From 6900ed843eed3bf8cd6ee59385761c4dade899c5 Mon Sep 17 00:00:00 2001 From: Arne Binder Date: Tue, 20 Aug 2024 21:04:34 +0200 Subject: [PATCH] fix test method name --- tests/unit/core/test_dataset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/core/test_dataset.py b/tests/unit/core/test_dataset.py index 583f71ba..16532823 100644 --- a/tests/unit/core/test_dataset.py +++ b/tests/unit/core/test_dataset.py @@ -551,7 +551,7 @@ def test_concatenate_datasets_errors(dataset_with_converter_functions): assert str(excinfo.value) == "All datasets must have the same document type to concatenate" -def test_add_set_name_to_document(): +def test_add_dset_name_to_document(): # Test document having no metadata attribute doc = Document() assert not hasattr(doc, "metadata")