From e51b12d0fda49ef93f23705ac612ebc8e749d186 Mon Sep 17 00:00:00 2001 From: Jan Romann Date: Tue, 26 Nov 2024 11:29:26 +0100 Subject: [PATCH] test: fix coffee machine file names --- tdd/tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tdd/tests/conftest.py b/tdd/tests/conftest.py index 577da15..c7a1a1a 100644 --- a/tdd/tests/conftest.py +++ b/tdd/tests/conftest.py @@ -98,13 +98,13 @@ def custom(self, request, **kwargs): @pytest.fixture def mock_sparql_with_one_td(httpx_mock): - graph = SparqlGraph("smart_coffe_machine_init.nquads") + graph = SparqlGraph("smart_coffee_machine_init.nquads") httpx_mock.add_callback(graph.custom) @pytest.fixture def mock_sparql_with_one_expired_td(httpx_mock): - graph = SparqlGraph("smart_coffe_machine_expired.nquads") + graph = SparqlGraph("smart_coffee_machine_expired.nquads") httpx_mock.add_callback(graph.custom)