[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

abarth at webkit.org abarth at webkit.org
Thu Apr 8 00:36:23 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 907a38a6d1eb522d3dd75504c5ee51ade639c5e3
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