Skip to content

Commit 50771a4

Browse files
NO SNOW: fix test error because of naming (#3723)
1 parent c6c1dc1 commit 50771a4

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

tests/integ/datasource/test_jdbc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
)
1313
from snowflake.snowpark.exceptions import SnowparkSQLException
1414
from snowflake.snowpark.types import StructType, StructField, FloatType, DoubleType
15-
from tests.resources.test_data_source_dir.test_jdbc import (
15+
from tests.resources.test_data_source_dir.test_jdbc_data import (
1616
URL,
1717
EXTERNAL_ACCESS_INTEGRATION,
1818
SECRET,

tests/resources/test_data_source_dir/test_jdbc.py renamed to tests/resources/test_data_source_dir/test_jdbc_data.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
DoubleType,
1616
)
1717

18-
from ...parameters import ORACLEDB_CONNECTION_PARAMETERS, POSTGRES_CONNECTION_PARAMETERS
18+
from tests.parameters import (
19+
ORACLEDB_CONNECTION_PARAMETERS,
20+
POSTGRES_CONNECTION_PARAMETERS,
21+
)
1922

2023
host = ORACLEDB_CONNECTION_PARAMETERS["host"]
2124
port = ORACLEDB_CONNECTION_PARAMETERS["port"]

tests/unit/scala/test_utils_suite.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ def check_zip_files_and_close_stream(input_stream, expected_files):
363363
"resources/test_data_source_dir/test_data_source_data.py",
364364
"resources/test_data_source_dir/test_postgres_data.py",
365365
"resources/test_data_source_dir/test_databricks_data.py",
366-
"resources/test_data_source_dir/test_jdbc.py",
366+
"resources/test_data_source_dir/test_jdbc_data.py",
367367
"resources/test_data_source_dir/test_mysql_data.py",
368368
"resources/test_debug_utils_dir/",
369369
"resources/test_debug_utils_dir/dataframe_generator1.py",

0 commit comments

Comments
 (0)