From fdc73fc3611aec24e6d36d765cf2b1f125e23351 Mon Sep 17 00:00:00 2001 From: shyamd <16827130+shyamd@users.noreply.github.com> Date: Mon, 13 Jan 2025 19:39:02 -0800 Subject: [PATCH] fix assert for multiple authors --- test_files/test_integration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_files/test_integration.py b/test_files/test_integration.py index 7f9614d..497f65a 100644 --- a/test_files/test_integration.py +++ b/test_files/test_integration.py @@ -93,7 +93,7 @@ def test_citation_features(pandoc_plugin): # Check various citation formats assert "(2019)" in result # Suppressed author assert "(see Author and Author 2019, p. 123)" in result # Prefix and suffix - assert "Author and Author 2019; Author and Author 2019" in result # Multiple citations + assert "Author and Author 2019a, b" in result # Multiple citations def test_bibliography_controls(plugin):