[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

tkent at chromium.org tkent at chromium.org
Wed Dec 22 11:31:16 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit a1f8e9547c060707dccb3797db9c0e88bfda72d7
Author: tkent at chromium.org <tkent at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Tue Jul 27 23:16:29 2010 +0000

    2010-07-27  Kent Tamura  <tkent at chromium.org>
    
            Unreviewed, trivial typo fix.
    
            * Scripts/webkitpy/layout_tests/port/chromium.py:
              Fix a wrong method name committed by r64109.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64175 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 86c15c1..e7506f7 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,10 @@
+2010-07-27  Kent Tamura  <tkent at chromium.org>
+
+        Unreviewed, trivial typo fix.
+
+        * Scripts/webkitpy/layout_tests/port/chromium.py:
+          Fix a wrong method name committed by r64109.
+
 2010-07-27  Sam Weinig  <sam at webkit.org>
 
         Reviewed by Anders Carlsson.
diff --git a/WebKitTools/Scripts/webkitpy/layout_tests/port/chromium.py b/WebKitTools/Scripts/webkitpy/layout_tests/port/chromium.py
index b67df4b..8106da4 100644
--- a/WebKitTools/Scripts/webkitpy/layout_tests/port/chromium.py
+++ b/WebKitTools/Scripts/webkitpy/layout_tests/port/chromium.py
@@ -385,7 +385,7 @@ class ChromiumDriver(base.Driver):
                 if uri != actual_uri:
                     # GURL capitalizes the drive letter of a file URL.
                     if (not re.search("^file:///[a-z]:", uri) or
-                        uri.tolower() != actual_uri.tolower()):
+                        uri.lower() != actual_uri.lower()):
                         _log.fatal("Test got out of sync:\n|%s|\n|%s|" %
                                    (uri, actual_uri))
                         raise AssertionError("test out of sync")

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list