test-pathencode: reduce makepart length requirement by 1
This allows path components of length 1 to be generated.
--- a/tests/test-pathencode.py Wed Jun 19 22:34:34 2013 -0700
+++ b/tests/test-pathencode.py Wed Jun 19 23:01:22 2013 -0700
@@ -125,7 +125,7 @@
p = pickfrom(rng, firsttable)(rng)
l = len(p)
ps = [p]
- while l <= k:
+ while l < k:
p = pickfrom(rng, resttable)(rng)
l += len(p)
ps.append(p)