From 5ba0912146295f108f2b0a173249c85a87944caf Mon Sep 17 00:00:00 2001 From: Michael Goerz Date: Tue, 24 Oct 2023 01:43:15 -0400 Subject: [PATCH] Confirm corporate authors working with BibInternal 0.3.5 --- test/test_formatting.jl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/test_formatting.jl b/test/test_formatting.jl index fda88e3..6d4bdbe 100644 --- a/test/test_formatting.jl +++ b/test/test_formatting.jl @@ -176,14 +176,13 @@ 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)."