diff --git a/tests/conftest.py b/tests/conftest.py index 006714303..7461b1f0f 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -305,7 +305,7 @@ def added_vector_store(client, json_vector_store, logged_in_headers): @pytest.fixture def test_component_code(): - path = Path(__file__).parent.absolute() / "data" / "test_component.py" + path = Path(__file__).parent.absolute() / "data" / "component_test.py" # load the content as a string with open(path, "r") as f: return f.read() diff --git a/tests/data/test_component.py b/tests/data/compontent_test.py similarity index 100% rename from tests/data/test_component.py rename to tests/data/compontent_test.py