From 3273e815bf7473681b96c3b54be677adcd91b1c3 Mon Sep 17 00:00:00 2001 From: Longze Chen Date: Sun, 15 Dec 2024 21:25:37 -0500 Subject: [PATCH] Fix preprint version creation in crossref tests --- tests/identifiers/test_crossref.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/identifiers/test_crossref.py b/tests/identifiers/test_crossref.py index 0ad1501e9f8..7cb5518df46 100644 --- a/tests/identifiers/test_crossref.py +++ b/tests/identifiers/test_crossref.py @@ -42,7 +42,7 @@ def preprint(): @pytest.fixture() def preprint_version(preprint): - versioned_preprint = PreprintFactory.create_version(preprint=preprint) + versioned_preprint = PreprintFactory.create_version(preprint) return versioned_preprint @pytest.fixture()