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

mithrandi (Tristan Seligmann) phabricator at mercurial-scm.org
Tue Aug 15 13:25:10 EDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG3889cf955a62: hg: tolerate long vs. int in test-context.py (authored by mithrandi).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D361?vs=823&id=929

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, durin42
Cc: mercurial-devel


More information about the Mercurial-devel mailing list