tests/test-ancestor.py
changeset 32893 a8dfa35a4130
parent 32861 20d70df64e93
child 32894 ec9ed269edc3
--- a/tests/test-ancestor.py	Sun May 28 00:12:38 2017 +0200
+++ b/tests/test-ancestor.py	Sat Jun 17 14:38:02 2017 +0530
@@ -42,7 +42,7 @@
                 p1 = i - 1
             else:
                 p1 = rng.randrange(i - 1)
-            p2 = rng.choice(range(0, p1) + range(p1 + 1, i))
+            p2 = rng.choice(list(range(0, p1)) + list(range(p1 + 1, i)))
             graph[i] = [p1, p2]
         elif rng.random() < prevprob:
             graph[i] = [i - 1]