From c5106f10a85e6e9d4a64dec6dce09f1667a9a7bc Mon Sep 17 00:00:00 2001 From: abhishekbhakat Date: Tue, 25 Feb 2025 02:21:44 +0000 Subject: [PATCH] Use default resources yaml --- tests/parser/test_operation_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/parser/test_operation_parser.py b/tests/parser/test_operation_parser.py index ab02873..c8cec75 100644 --- a/tests/parser/test_operation_parser.py +++ b/tests/parser/test_operation_parser.py @@ -13,7 +13,7 @@ logger = logging.getLogger(__name__) @pytest.fixture def spec_file(): """Get content of the v1.yaml spec file.""" - with resources.files("tests.client").joinpath("v1.yaml").open("rb") as f: + with resources.files("airflow_mcp_server.resources").joinpath("v1.yaml").open("rb") as f: return f.read()