Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/integ/datasource/test_jdbc.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
)
from snowflake.snowpark.exceptions import SnowparkSQLException
from snowflake.snowpark.types import StructType, StructField, FloatType, DoubleType
from tests.resources.test_data_source_dir.test_jdbc import (
from tests.resources.test_data_source_dir.test_jdbc_data import (
URL,
EXTERNAL_ACCESS_INTEGRATION,
SECRET,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@
DoubleType,
)

from ...parameters import ORACLEDB_CONNECTION_PARAMETERS, POSTGRES_CONNECTION_PARAMETERS
from tests.parameters import (
ORACLEDB_CONNECTION_PARAMETERS,
POSTGRES_CONNECTION_PARAMETERS,
)

host = ORACLEDB_CONNECTION_PARAMETERS["host"]
port = ORACLEDB_CONNECTION_PARAMETERS["port"]
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/scala/test_utils_suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ def check_zip_files_and_close_stream(input_stream, expected_files):
"resources/test_data_source_dir/test_data_source_data.py",
"resources/test_data_source_dir/test_postgres_data.py",
"resources/test_data_source_dir/test_databricks_data.py",
"resources/test_data_source_dir/test_jdbc.py",
"resources/test_data_source_dir/test_jdbc_data.py",
"resources/test_data_source_dir/test_mysql_data.py",
"resources/test_debug_utils_dir/",
"resources/test_debug_utils_dir/dataframe_generator1.py",
Expand Down
Loading