Skip to content

Commit

Permalink
empty string test (JuliaLogging#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Oskin committed May 4, 2022
1 parent e9208ad commit d824206
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/test02_loggerformat.jl
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ end
s = String(take!(io))
@test s == "4 y = 2\n"

@info "" x = 4 y = 2
s = String(take!(io))
@test s == "x = 4, y = 2\n"

@info "hello" x = 4 " and " y = 2
s = String(take!(io))
@test s == "hello x = 4 and y = 2\n"
Expand Down

0 comments on commit d824206

Please sign in to comment.