Skip to content

Commit d824206

Browse files
author
Andrey Oskin
committed
empty string test (#33)
1 parent e9208ad commit d824206

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/test02_loggerformat.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@ end
4343
s = String(take!(io))
4444
@test s == "4 y = 2\n"
4545

46+
@info "" x = 4 y = 2
47+
s = String(take!(io))
48+
@test s == "x = 4, y = 2\n"
49+
4650
@info "hello" x = 4 " and " y = 2
4751
s = String(take!(io))
4852
@test s == "hello x = 4 and y = 2\n"

0 commit comments

Comments
 (0)