Title: [105159] trunk/Tools
Revision
105159
Author
[email protected]
Date
2012-01-17 07:42:19 -0800 (Tue, 17 Jan 2012)

Log Message

Unreviewed. Fix python unit test I broke with r105142

* Scripts/webkitpy/common/config/ports_unittest.py:
(WebKitPortTest.test_gtk_port):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (105158 => 105159)


--- trunk/Tools/ChangeLog	2012-01-17 15:37:43 UTC (rev 105158)
+++ trunk/Tools/ChangeLog	2012-01-17 15:42:19 UTC (rev 105159)
@@ -1,3 +1,10 @@
+2012-01-17  Gustavo Noronha Silva  <[email protected]>
+
+        Unreviewed. Fix python unit test I broke with r105142
+
+        * Scripts/webkitpy/common/config/ports_unittest.py:
+        (WebKitPortTest.test_gtk_port):
+
 2012-01-17  Tor Arne Vestbø  <[email protected]>
 
         [Qt] Don't set the 'primary' flag when mocking touch-points in MiniBrowser

Modified: trunk/Tools/Scripts/webkitpy/common/config/ports_unittest.py (105158 => 105159)


--- trunk/Tools/Scripts/webkitpy/common/config/ports_unittest.py	2012-01-17 15:37:43 UTC (rev 105158)
+++ trunk/Tools/Scripts/webkitpy/common/config/ports_unittest.py	2012-01-17 15:42:19 UTC (rev 105159)
@@ -51,8 +51,8 @@
         self.assertEquals(GtkPort.name(), "Gtk")
         self.assertEquals(GtkPort.flag(), "--port=gtk")
         self.assertEquals(GtkPort.run_webkit_tests_command(), WebKitPort.script_shell_command("run-webkit-tests") + ["--gtk"])
-        self.assertEquals(GtkPort.build_webkit_command(), WebKitPort.script_shell_command("build-webkit") + ["--gtk", WebKitPort.makeArgs()])
-        self.assertEquals(GtkPort.build_webkit_command(build_style="debug"), WebKitPort.script_shell_command("build-webkit") + ["--debug", "--gtk", WebKitPort.makeArgs()])
+        self.assertEquals(GtkPort.build_webkit_command(), WebKitPort.script_shell_command("build-webkit") + ["--gtk", "--update-gtk", WebKitPort.makeArgs()])
+        self.assertEquals(GtkPort.build_webkit_command(build_style="debug"), WebKitPort.script_shell_command("build-webkit") + ["--debug", "--gtk", "--update-gtk", WebKitPort.makeArgs()])
 
     def test_qt_port(self):
         self.assertEquals(QtPort.name(), "Qt")
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to