Skip to content

Commit d2de873

Browse files
committed
Fix print test so that it passes on Julia 1.1.
1 parent 3984b09 commit d2de873

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
@@ -25,7 +25,7 @@ end
2525
io = IOBuffer();
2626
println(io, LoopVectorization.operations(lsselfdot))
2727
s = String(take!(io))
28-
@test occursin("Operation[var\"", s)
28+
@test occursin("Operation[", s)
2929
@test occursin("s = 0", s)
3030
@test occursin("s = LoopVectorization.vfmadd", s)
3131

0 commit comments

Comments
 (0)