From e14f9b9a38c0ea9df459f08431e7c501441b9289 Mon Sep 17 00:00:00 2001 From: Lars Reimann Date: Fri, 5 May 2023 13:46:41 +0200 Subject: [PATCH] test: rename test --- .../data/tabular/containers/_table/test_from_excel_file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/safeds/data/tabular/containers/_table/test_from_excel_file.py b/tests/safeds/data/tabular/containers/_table/test_from_excel_file.py index 5d1404a7d..6a890b18e 100644 --- a/tests/safeds/data/tabular/containers/_table/test_from_excel_file.py +++ b/tests/safeds/data/tabular/containers/_table/test_from_excel_file.py @@ -35,6 +35,6 @@ def test_should_create_table_from_excel_file(path: str | Path, expected: Table) assert table == expected -def test_should_raise_file_not_found() -> None: +def test_should_raise_if_file_not_found() -> None: with pytest.raises(FileNotFoundError): Table.from_excel_file(resolve_resource_path("test_table_from_excel_file_invalid.xls"))