Skip to content

Commit 6669043

Browse files
committed
Fix printing test
1 parent ceb2b44 commit 6669043

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/reduction.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ eqs = [
4040
lorenz1 = ODESystem(eqs,t,name=:lorenz1)
4141

4242
lorenz1_aliased = structural_simplify(lorenz1)
43-
io = IOBuffer(); show(io, lorenz1_aliased); str = String(take!(io))
43+
io = IOBuffer(); show(io, MIME("text/plain"), lorenz1_aliased); str = String(take!(io))
4444
@test all(s->occursin(s, str), ["lorenz1", "States (2)", "Parameters (3)"])
4545
reduced_eqs = [
4646
D(x) ~ σ*(y - x)

0 commit comments

Comments
 (0)