Title: [90495] trunk/Tools
Revision
90495
Author
[email protected]
Date
2011-07-06 14:09:28 -0700 (Wed, 06 Jul 2011)

Log Message

2011-07-06  Daniel Bates  <[email protected]>

        Fix webkitpy error after changeset 90483 <http://trac.webkit.org/changeset/90483>; Add missing
        parameter to _fetch_file_from_results lamdba function.

        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (90494 => 90495)


--- trunk/Tools/ChangeLog	2011-07-06 20:58:58 UTC (rev 90494)
+++ trunk/Tools/ChangeLog	2011-07-06 21:09:28 UTC (rev 90495)
@@ -1,3 +1,10 @@
+2011-07-06  Daniel Bates  <[email protected]>
+
+        Fix webkitpy error after changeset 90483 <http://trac.webkit.org/changeset/90483>; Add missing
+        parameter to _fetch_file_from_results lamdba function.
+
+        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
+
 2011-07-06  Kevin Ollivier  <[email protected]>
 
         [wx] Unreviewed build fix. Generate the proper install_name for dylibs on Mac.

Modified: trunk/Tools/Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py (90494 => 90495)


--- trunk/Tools/Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py	2011-07-06 20:58:58 UTC (rev 90494)
+++ trunk/Tools/Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py	2011-07-06 21:09:28 UTC (rev 90495)
@@ -138,7 +138,7 @@
         buildbot = BuildBot()
         builder = Builder(u"Foo Builder (test)", buildbot)
         build = Build(builder, None, None, None)
-        build._fetch_file_from_results = lambda: None
+        build._fetch_file_from_results = lambda file_name: None
         # Test that layout_test_results() returns None if the fetch fails.
         self.assertEqual(build.layout_test_results(), None)
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to