Skip to content

Commit

Permalink
Fix SNOWFLAKE_CONN_ID and DAG_ID in Snowpark system tests (apache#42952)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-jdu authored Oct 12, 2024
1 parent b9b24f4 commit db9c130
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
from airflow import DAG
from airflow.decorators import task

SNOWFLAKE_CONN_ID = "snowflake_default"
DAG_ID = "example_snowpark"
SNOWFLAKE_CONN_ID = "my_snowflake_conn"
DAG_ID = "example_snowpark_decorator"

with DAG(
DAG_ID,
Expand Down
4 changes: 2 additions & 2 deletions providers/tests/system/snowflake/example_snowpark_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
from airflow import DAG
from airflow.providers.snowflake.operators.snowpark import SnowparkOperator

SNOWFLAKE_CONN_ID = "snowflake_default"
DAG_ID = "example_snowpark"
SNOWFLAKE_CONN_ID = "my_snowflake_conn"
DAG_ID = "example_snowpark_operator"

with DAG(
DAG_ID,
Expand Down

0 comments on commit db9c130

Please sign in to comment.