Skip to content

Commit 18b5ef2

Browse files
committed
fix test and hopefully also runic
1 parent ea5366c commit 18b5ef2

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

test/other.jl

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,19 +74,15 @@ module TestMiscellaneous
7474
buffer = IOBuffer()
7575
braille(buffer, H)
7676
output = String(take!(buffer))
77-
check = """
78-
... 🭻⎡⠉⢈⎤🭻 ...
79-
⎣⠀⢀⎦
80-
"""
77+
check = "... 🭻⎡⠉⢈⎤🭻 ...\n ⎣⠀⢀⎦ \n"
78+
8179
@test output == check
8280

8381
O = make_time_mpo(H, 1.0, TaylorCluster(3, false, false))
8482
braille(buffer, O)
8583
output = String(take!(buffer))
86-
check = """
87-
... 🭻⎡⡏⠉⠛⠟⎤🭻 ...
88-
⎣⡇⠀⠀⡂⎦
89-
"""
84+
check = "... 🭻⎡⡏⠉⠛⠟⎤🭻 ...\n ⎣⡇⠀⠀⡂⎦ \n"
85+
9086
@test output == check
9187

9288
# Finite Hamiltonians and MPOs

0 commit comments

Comments
 (0)