Skip to content

Commit

Permalink
Fix printing bug
Browse files Browse the repository at this point in the history
  • Loading branch information
bartvanerp authored Aug 31, 2023
1 parent 7eee68b commit 5aab568
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/addons/debug.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function message_mapping_addon(addon::AddonDebug, mapping, messages, marginals,
msg *= "Towards interface: " * string(mapping.vtag) * "\n"
msg *= "With local constraint: " * string(mapping.vconstraint) * "\n"
if !isnothing(mapping.meta)
msg *= "With meta: ", string(mapping.meta) * "\n"
msg *= "With meta: " * string(mapping.meta) * "\n"

Check warning on line 41 in src/addons/debug.jl

View check run for this annotation

Codecov / codecov/patch

src/addons/debug.jl#L41

Added line #L41 was not covered by tests
end
if !isnothing(mapping.addons)
msg *= "With addons: " * string(mapping.addons) * "\n"
Expand Down

0 comments on commit 5aab568

Please sign in to comment.