Skip to content

Commit bfedfdc

Browse files
committed
fix 0.5 deprecation in test script
1 parent ae64f51 commit bfedfdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ tst1u = Compat.UTF8String(tst1)
88
@test L"\alpha^2" == "\$\\alpha^2\$"
99
@test stringmime("text/latex", tst1) == tst1u
1010
buf = IOBuffer()
11-
writemime(buf, "text/latex", tst1)
11+
@compat show(buf, "text/latex", tst1)
1212
@test takebuf_string(buf) == tst1u
1313
@test latexstring(tst1u) == tst1 == LaTeXString(tst1u)
1414

0 commit comments

Comments
 (0)