From 9cb87b328db039f4ce625abbaf158e155389a32e Mon Sep 17 00:00:00 2001 From: Bruno Dufour Date: Mon, 9 Dec 2024 13:15:30 -0800 Subject: [PATCH] Fixes to imports following rebase --- tests/nativeapp/codegen/test_compiler.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/nativeapp/codegen/test_compiler.py b/tests/nativeapp/codegen/test_compiler.py index 7da3382588..6f703e3d9e 100644 --- a/tests/nativeapp/codegen/test_compiler.py +++ b/tests/nativeapp/codegen/test_compiler.py @@ -28,13 +28,13 @@ from snowflake.cli._plugins.nativeapp.entities.application_package import ( ApplicationPackageEntityModel, ) -from snowflake.cli.api.project.schemas.project_definition import ( - build_project_definition, -) -from snowflake.cli.api.project.schemas.v1.native_app.path_mapping import ( +from snowflake.cli.api.project.schemas.entities.common import ( PathMapping, ProcessorMapping, ) +from snowflake.cli.api.project.schemas.project_definition import ( + build_project_definition, +) @pytest.fixture()