From 13b6e1e0b910d3bd1a484f1662ec55259bde8b5c 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 ad98fc01..7c104e79 100644 --- a/tests/unit/core/test_dataset.py +++ b/tests/unit/core/test_dataset.py @@ -504,7 +504,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")