Skip to content

Commit c171ce9

Browse files
committed
fix test failure
1 parent 0adfe57 commit c171ce9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def assert_phash(fig, reference_phash):
6161
except subprocess.CalledProcessError as e:
6262
print('Command output:')
6363
print('=' * 70)
64-
print(repr(e.output))
64+
print(e.output)
6565
print('=' * 70)
6666
if 'DISPLAY' not in os.environ:
6767
cmd = ['curl', '-sT', tikz_file, 'chunk.io']

test/test_fancybox.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def box1(ax):
3838

3939
ax.text(
4040
0.1, 0.8,
41-
r' boxstyle=\'round, pad=0.1\'',
41+
' boxstyle=\'round, pad=0.1\'',
4242
size=10, transform=ax.transAxes
4343
)
4444

0 commit comments

Comments
 (0)