Skip to content

Commit

Permalink
Merge pull request #3249 from cgohlke/patch-1
Browse files Browse the repository at this point in the history
TST: Fix test_backend_ps failures on Windows
  • Loading branch information
mdboom committed Jul 14, 2014
2 parents 047c60a + 3f156ae commit c881afd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/tests/test_backend_ps.py
Expand Up @@ -39,7 +39,7 @@ def _test_savefig_to_stringio(format='ps'):
values = [re.sub(b'%%.*?\n', b'', x) for x in values]

assert values[0] == values[1]
assert values[1] == values[2]
assert values[1] == values[2].replace(b'\r\n', b'\n')


@cleanup
Expand Down

0 comments on commit c881afd

Please sign in to comment.