Skip to content

Commit

Permalink
fix missing package name
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-gbloom committed Mar 21, 2024
1 parent 81eaac3 commit 32f557b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests_integration/test_nativeapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,6 @@ def test_nativeapp_init_deploy(
runner,
snowflake_session,
temporary_working_directory,
test_database,
):
project_name = "myapp"
result = runner.invoke_json(
Expand Down Expand Up @@ -535,7 +534,7 @@ def test_nativeapp_init_deploy(

stage_name = "app_src.stage" # as defined in native-apps-templates/basic
stage_files = runner.invoke_with_connection_json(
["object", "stage", "list", stage_name],
["object", "stage", "list", f"{package_name}.{stage_name}"],
env=TEST_ENV,
)
assert contains_row_with(stage_files.json, {"name": "manifest.yml"})
Expand Down

0 comments on commit 32f557b

Please sign in to comment.