D5761: py3: fix up test-remotefilelog-cacheprocess.t to not depend on a repr
durin42 (Augie Fackler)
phabricator at mercurial-scm.org
Wed Jan 30 22:34:15 UTC 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rHGee51cde26714: py3: fix up test-remotefilelog-cacheprocess.t to not depend on a repr (authored by durin42, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D5761?vs=13598&id=13606
REVISION DETAIL
https://phab.mercurial-scm.org/D5761
AFFECTED FILES
tests/test-remotefilelog-cacheprocess.t
CHANGE DETAILS
diff --git a/tests/test-remotefilelog-cacheprocess.t b/tests/test-remotefilelog-cacheprocess.t
--- a/tests/test-remotefilelog-cacheprocess.t
+++ b/tests/test-remotefilelog-cacheprocess.t
@@ -56,11 +56,11 @@
> log('requested %r\n' % key)
> sys.stdout.flush()
> elif cmd == 'set':
- > assert False, 'todo writing'
+ > raise Exception('todo writing')
> else:
- > assert False, 'unknown command! %r' % cmd
+ > raise Exception('unknown command! %r' % cmd)
> except Exception as e:
- > log('Exception! %r\n' % e)
+ > log('Exception! %s\n' % e)
> raise
> EOF
@@ -79,7 +79,7 @@
requested 'master/39/5df8f7c51f007019cb30201c49e884b46b92fa/69a1b67522704ec122181c0890bd16e9d3e7516a'
requested 'master/95/cb0bfd2977c761298d9624e4b4d4c72a39974a/076f5e2225b3ff0400b98c92aa6cdf403ee24cca'
got command 'set'
- Exception! AssertionError('todo writing',)
+ Exception! todo writing
Test cache hits.
$ mv hgcache oldhgcache
@@ -110,7 +110,7 @@
requested 'y\x00master/95/cb0bfd2977c761298d9624e4b4d4c72a39974a/076f5e2225b3ff0400b98c92aa6cdf403ee24cca'
requested 'z\x00master/39/5df8f7c51f007019cb30201c49e884b46b92fa/69a1b67522704ec122181c0890bd16e9d3e7516a'
got command 'set'
- Exception! AssertionError('todo writing',)
+ Exception! todo writing
Test cache hits with includepath.
$ mv hgcache oldhgcache
To: durin42, #hg-reviewers, pulkit
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list