diff --git a/test/test_formatting.jl b/test/test_formatting.jl index fda88e3..8641ca0 100644 --- a/test/test_formatting.jl +++ b/test/test_formatting.jl @@ -176,17 +176,18 @@ end entry = bib.entries["OEIS"] name = entry.authors[1] - dump(name) - @test_broken name.last == "OEIS Foundation Inc." + @test name.last == "{OEIS Foundation Inc.}" @test name.first == "" @test name.middle == "" @test name.particle == "" md(key) = format_bibliography_reference(Val(:numeric), bib.entries[key]) - @test_broken md("OEIS") == "OEIS Foundation Inc. [*The On-Line Encyclopedia of Integer Sequences*](https://oeis.org). Published electronically at https://oeis.org (2023)." + @test md("OEIS") == + "OEIS Foundation Inc. [*The On-Line Encyclopedia of Integer Sequences*](https://oeis.org). Published electronically at https://oeis.org (2023)." nbsp = "\u00A0" - @test md("OEISworkaround") == "OEIS$(nbsp)Foundation$(nbsp)Inc. [*The On-Line Encyclopedia of Integer Sequences*](https://oeis.org). Published electronically at https://oeis.org (2023)." + @test md("OEISworkaround") == + "OEIS$(nbsp)Foundation$(nbsp)Inc. [*The On-Line Encyclopedia of Integer Sequences*](https://oeis.org). Published electronically at https://oeis.org (2023)." end