Title: [90482] trunk/Tools
Revision
90482
Author
[email protected]
Date
2011-07-06 12:45:49 -0700 (Wed, 06 Jul 2011)

Log Message

2011-07-06  Eric Seidel  <[email protected]>

        Unreviewed.  Fixing an exception in test-webkitpy, caused by bug 64006.

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

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (90481 => 90482)


--- trunk/Tools/ChangeLog	2011-07-06 19:21:24 UTC (rev 90481)
+++ trunk/Tools/ChangeLog	2011-07-06 19:45:49 UTC (rev 90482)
@@ -1,3 +1,9 @@
+2011-07-06  Eric Seidel  <[email protected]>
+
+        Unreviewed.  Fixing an exception in test-webkitpy, caused by bug 64006.
+
+        * Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
+
 2011-07-06  Gustavo Noronha Silva  <[email protected]>
 
         Run an Xvfb instance to run the API tests on, like we do for the

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


--- trunk/Tools/Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py	2011-07-06 19:21:24 UTC (rev 90481)
+++ trunk/Tools/Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py	2011-07-06 19:45:49 UTC (rev 90482)
@@ -135,7 +135,9 @@
 
 class BuildTest(unittest.TestCase):
     def test_layout_test_results(self):
-        build = Build(None, None, None, None)
+        buildbot = BuildBot()
+        builder = Builder(u"Foo Builder (test)", buildbot)
+        build = Build(builder, None, None, None)
         build._fetch_results_html = lambda: 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