tests/test-pathencode.py
changeset 18435 8c019d2fd7c0
parent 18110 acfc6fab1361
child 19322 ff1586a3adc5
child 19318 9778c77f05d6
--- a/tests/test-pathencode.py	Wed Dec 12 13:09:36 2012 -0800
+++ b/tests/test-pathencode.py	Wed Dec 12 13:09:37 2012 -0800
@@ -154,7 +154,7 @@
 def runtests(rng, seed, count):
     nerrs = 0
     for p in genpath(rng, count):
-        h = store._dothybridencode(p)    # uses C implementation, if available
+        h = store._pathencode(p)    # uses C implementation, if available
         r = store._hybridencode(p, True) # reference implementation in Python
         if h != r:
             if nerrs == 0: