Skip to content

Commit b96a01c

Browse files
authored
reprlib bugfix
1 parent 93f7331 commit b96a01c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

codeflash/verification/equivalence.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414

1515
INCREASED_RECURSION_LIMIT = 5000
1616

17-
reprlib_repr = reprlib.Repr(maxstring=1500)
17+
reprlib_repr = reprlib.Repr()
18+
reprlib_repr.maxstring = 1500
1819
test_diff_repr = reprlib_repr.repr
1920

2021

0 commit comments

Comments
 (0)