Title: [270247] trunk/Tools
Revision
270247
Author
[email protected]
Date
2020-11-30 09:07:35 -0800 (Mon, 30 Nov 2020)

Log Message

[webkitscmpy] webkitscmpy.test.svn_unittest.TestRemoteSvn.test_info timezone dependent
https://bugs.webkit.org/show_bug.cgi?id=219263
<rdar://problem/71806358>

Reviewed by Aakash Jain.

* Scripts/libraries/webkitscmpy/webkitscmpy/test/svn_unittest.py:
(TestRemoteSvn.test_info):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (270246 => 270247)


--- trunk/Tools/ChangeLog	2020-11-30 16:39:25 UTC (rev 270246)
+++ trunk/Tools/ChangeLog	2020-11-30 17:07:35 UTC (rev 270247)
@@ -1,3 +1,14 @@
+2020-11-30  Jonathan Bedard  <[email protected]>
+
+        [webkitscmpy] webkitscmpy.test.svn_unittest.TestRemoteSvn.test_info timezone dependent
+        https://bugs.webkit.org/show_bug.cgi?id=219263
+        <rdar://problem/71806358>
+
+        Reviewed by Aakash Jain.
+
+        * Scripts/libraries/webkitscmpy/webkitscmpy/test/svn_unittest.py:
+        (TestRemoteSvn.test_info):
+
 2020-11-30  Aakash Jain  <[email protected]>
 
         [build.webkit.org] Update RunTest262Tests step for new buildbot

Modified: trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/test/svn_unittest.py (270246 => 270247)


--- trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/test/svn_unittest.py	2020-11-30 16:39:25 UTC (rev 270246)
+++ trunk/Tools/Scripts/libraries/webkitscmpy/webkitscmpy/test/svn_unittest.py	2020-11-30 17:07:35 UTC (rev 270247)
@@ -249,7 +249,7 @@
         with mocks.remote.Svn():
             self.assertDictEqual({
                 'Last Changed Author': '[email protected]',
-                'Last Changed Date': '2020-10-02 11:58:20',
+                'Last Changed Date': datetime.fromtimestamp(1601665100).strftime('%Y-%m-%d %H:%M:%S'),
                 'Last Changed Rev': '6',
                 'Revision': 10,
             }, remote.Svn(self.remote).info())
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to