Skip to content
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.

Commit

Permalink
fix nondeterminism in test6 generation script
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Grosse committed Dec 20, 2016
1 parent de42c6e commit c4fb7e0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified tests/test6/classes.dex
Binary file not shown.
2 changes: 1 addition & 1 deletion tests/test6/patch.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def multiGen(rand):
used = set()
while 1:
choices = rand.choice(ordsets)
x = random.choice(choices)
x = rand.choice(choices)
if x not in used:
yield x
used.add(x)
Expand Down

0 comments on commit c4fb7e0

Please sign in to comment.