Mercurial > public > mercurial-scm > hg
diff tests/test-hybridencode.py @ 18435:8c019d2fd7c0
store: switch to C-based hashed path encoding
author | Bryan O'Sullivan <bryano@fb.com> |
---|---|
date | Wed, 12 Dec 2012 13:09:37 -0800 |
parents | eb7f8359249a |
children | 297ea0df75d0 |
line wrap: on
line diff
--- a/tests/test-hybridencode.py Wed Dec 12 13:09:36 2012 -0800 +++ b/tests/test-hybridencode.py Wed Dec 12 13:09:37 2012 -0800 @@ -5,7 +5,7 @@ print "A = '%s'" % s.encode("string_escape") # show the result of the C implementation, if available - h = store._dothybridencode(s) + h = store._pathencode(s) print "B = '%s'" % h.encode("string_escape") # compare it with reference implementation in Python