Submitter | Siddharth Agarwal |
---|---|
Date | June 20, 2013, 5:47 p.m. |
Message ID | <0388beba5bfc4d02de6d.1371750422@dev1091.prn1.facebook.com> |
Download | mbox | patch |
Permalink | /patch/1740/ |
State | Accepted, archived |
Delegated to: | Matt Mackall |
Headers | show |
Comments
Patch
diff --git a/tests/test-pathencode.py b/tests/test-pathencode.py --- a/tests/test-pathencode.py +++ b/tests/test-pathencode.py @@ -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)