D361: hg: Tolerate long vs. int in test-context.py

mithrandi (Tristan Seligmann) phabricator at mercurial-scm.org
Sat Aug 12 12:32:27 UTC 2017


mithrandi created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REVISION SUMMARY
  The file times here can be longs instead of ints on some platforms, which will
  cause a test failure due to these printing with an L suffix; instead always
  format with %d which will produce the same output in either case.

REPOSITORY
  rHG Mercurial

REVISION DETAIL
  https://phab.mercurial-scm.org/D361

AFFECTED FILES
  tests/test-context.py

CHANGE DETAILS

diff --git a/tests/test-context.py b/tests/test-context.py
--- a/tests/test-context.py
+++ b/tests/test-context.py
@@ -24,11 +24,10 @@
 repo[None].add(['foo'])
 repo.commit(text='commit1', date="0 0")
 
+d = repo[None]['foo'].date()
 if os.name == 'nt':
-    d = repo[None]['foo'].date()
-    print("workingfilectx.date = (%d, %d)" % (d[0], d[1]))
-else:
-    print("workingfilectx.date =", repo[None]['foo'].date())
+    d = d[:2]
+print("workingfilectx.date = (%d, %d)" % d)
 
 # test memctx with non-ASCII commit message
 



To: mithrandi, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list