Skip to content

Commit

Permalink
fix test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
nschloe committed Apr 11, 2017
1 parent 0adfe57 commit c171ce9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def assert_phash(fig, reference_phash):
except subprocess.CalledProcessError as e:
print('Command output:')
print('=' * 70)
print(repr(e.output))
print(e.output)
print('=' * 70)
if 'DISPLAY' not in os.environ:
cmd = ['curl', '-sT', tikz_file, 'chunk.io']
Expand Down
2 changes: 1 addition & 1 deletion test/test_fancybox.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def box1(ax):

ax.text(
0.1, 0.8,
r' boxstyle=\'round, pad=0.1\'',
' boxstyle=\'round, pad=0.1\'',
size=10, transform=ax.transAxes
)

Expand Down

0 comments on commit c171ce9

Please sign in to comment.