Skip to content

Commit

Permalink
fixed typo that caused error on Python3.6 on windows (seemingly)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimfulton committed Apr 9, 2017
1 parent 0b48758 commit 64ae5ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ZODB/tests/test_fsdump.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
# Python 3 produces larger pickles, even when we use zodbpickle :(
# this changes all the offsets and sizes
(re.compile(r'\bsize=[0-9]+\b'), 'size=<SIZE>'),
(re.compile(r'\offset=[0-9]+\b'), 'offset=<OFFSET>'),
(re.compile(r'\boffset=[0-9]+\b'), 'offset=<OFFSET>'),
])


Expand Down

0 comments on commit 64ae5ed

Please sign in to comment.