From 491c03e5b6f899c79f293bd0f6011490dec791a4 Mon Sep 17 00:00:00 2001 From: Gabriel Luiz Freitas Almeida Date: Mon, 4 Dec 2023 17:58:52 -0300 Subject: [PATCH] Update test_component_code path in conftest.py --- tests/conftest.py | 2 +- tests/data/{test_component.py => compontent_test.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/data/{test_component.py => compontent_test.py} (100%) 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