From 6cce9f512adc24d7d2fe396b76d493a1de843e05 Mon Sep 17 00:00:00 2001 From: Mike Gerber Date: Tue, 19 Aug 2025 20:41:41 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=94=20=20Add=20missing=20dtypes=20for=20r?= =?UTF-8?q?ecordIdentifier=20etc.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/mods4pandas/tests/test_mods4pandas.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mods4pandas/tests/test_mods4pandas.py b/src/mods4pandas/tests/test_mods4pandas.py index 57e20a9..e6e402d 100644 --- a/src/mods4pandas/tests/test_mods4pandas.py +++ b/src/mods4pandas/tests/test_mods4pandas.py @@ -204,6 +204,9 @@ def test_dtypes(tmp_path): EXPECTED_TYPES = { # mods_info r"mets_file": ("object", ["str"]), + r"(recordInfo_)?recordIdentifier.*": ("object", ["str"]), + r"ppn": ("object", ["str"]), + r"ID": ("object", ["str"]), r"titleInfo_title": ("object", ["str"]), r"titleInfo_subTitle": ("object", ["str", "NoneType"]), r"titleInfo_partName": ("object", ["str", "NoneType"]),