[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.17-1283-gcf603cf
abarth at webkit.org
abarth at webkit.org
Tue Jan 5 23:49:43 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 4c6c2d9ad27b1471e395fbf67a380fc591fb111c
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Tue Dec 15 06:25:37 2009 +0000
2009-12-14 Adam Barth <abarth at webkit.org>
Unreviewed. Fix failing unittest.
* Scripts/modules/bugzilla_unittest.py:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52138 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index e9b2e09..6e66650 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,9 @@
+2009-12-14 Adam Barth <abarth at webkit.org>
+
+ Unreviewed. Fix failing unittest.
+
+ * Scripts/modules/bugzilla_unittest.py:
+
2009-12-14 Eric Seidel <eric at webkit.org>
Reviewed by Adam Barth.
diff --git a/WebKitTools/Scripts/modules/bugzilla_unittest.py b/WebKitTools/Scripts/modules/bugzilla_unittest.py
index fb7f8c4..fb0f756 100644
--- a/WebKitTools/Scripts/modules/bugzilla_unittest.py
+++ b/WebKitTools/Scripts/modules/bugzilla_unittest.py
@@ -98,7 +98,7 @@ class BugzillaTest(unittest.TestCase):
self.assertTrue(attachment)
# Make sure we aren't parsing more or less than we expect
- self.assertEquals(attachment.keys(), self._expected_example_attachment_parsing.keys())
+ self.assertEquals(sorted(attachment.keys()), sorted(self._expected_example_attachment_parsing.keys()))
for key, expected_value in self._expected_example_attachment_parsing.items():
self.assertEquals(attachment[key], expected_value, ("Failure for key: %s: Actual='%s' Expected='%s'" % (key, attachment[key], expected_value)))
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list