Title: [276277] trunk/Tools
Revision
276277
Author
[email protected]
Date
2021-04-19 16:37:20 -0700 (Mon, 19 Apr 2021)

Log Message

[ews] Enabled detailed error log when unit-tests fails
https://bugs.webkit.org/show_bug.cgi?id=224789

Unreviewed minor unit-test fix.


* CISupport/ews-build/factories_unittest.py:
(TestCase): Set maxDiff to None.

Modified Paths

Diff

Modified: trunk/Tools/CISupport/ews-build/factories_unittest.py (276276 => 276277)


--- trunk/Tools/CISupport/ews-build/factories_unittest.py	2021-04-19 23:03:26 UTC (rev 276276)
+++ trunk/Tools/CISupport/ews-build/factories_unittest.py	2021-04-19 23:37:20 UTC (rev 276277)
@@ -30,6 +30,8 @@
 
 
 class TestCase(unittest.TestCase):
+    maxDiff = None
+
     def assertBuildSteps(self, actual_steps, expected_steps):
         assert all([isinstance(step, _BuildStepFactory) for step in actual_steps])
         assert all([isinstance(step, _BuildStepFactory) for step in expected_steps])

Modified: trunk/Tools/ChangeLog (276276 => 276277)


--- trunk/Tools/ChangeLog	2021-04-19 23:03:26 UTC (rev 276276)
+++ trunk/Tools/ChangeLog	2021-04-19 23:37:20 UTC (rev 276277)
@@ -1,3 +1,13 @@
+2021-04-19  Aakash Jain  <[email protected]>
+
+        [ews] Enabled detailed error log when unit-tests fails
+        https://bugs.webkit.org/show_bug.cgi?id=224789
+
+        Unreviewed minor unit-test fix.
+
+        * CISupport/ews-build/factories_unittest.py:
+        (TestCase): Set maxDiff to None.
+
 2021-04-19  BJ Burg  <[email protected]>
 
         Can't use Web Inspector on web views made by TestWebKitAPI
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to