Skip to content

Commit

Permalink
updates imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-rp committed Sep 4, 2024
1 parent 31fa166 commit a6ee746
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion tests/load/sources/sql_database/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import dlt
from dlt.sources.credentials import ConnectionStringCredentials
from tests.sources.sql_database.sql_source import SQLAlchemySourceDB
from tests.load.sources.sql_database.sql_source import SQLAlchemySourceDB


def _create_db(**kwargs) -> Iterator[SQLAlchemySourceDB]:
Expand Down
2 changes: 1 addition & 1 deletion tests/load/sources/sql_database/test_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from dlt.sources.sql_database.helpers import TableLoader, TableBackend
from dlt.sources.sql_database.schema_types import table_to_columns

from tests.sources.sql_database.sql_source import SQLAlchemySourceDB
from tests.load.sources.sql_database.sql_source import SQLAlchemySourceDB


@pytest.mark.parametrize("backend", ["sqlalchemy", "pyarrow", "pandas", "connectorx"])
Expand Down
4 changes: 2 additions & 2 deletions tests/load/sources/sql_database/test_sql_database_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
assert_schema_on_data,
load_tables_to_dicts,
)
from tests.sources.sql_database.sql_source import SQLAlchemySourceDB
from tests.sources.sql_database.test_helpers import mock_json_column
from tests.load.sources.sql_database.sql_source import SQLAlchemySourceDB
from tests.load.sources.sql_database.test_helpers import mock_json_column
from tests.utils import data_item_length


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
assert_load_info,
load_table_counts,
)
from tests.sources.sql_database.sql_source import SQLAlchemySourceDB
from tests.sources.sql_database.test_helpers import mock_json_column
from tests.sources.sql_database.test_sql_database_source import (
from tests.load.sources.sql_database.sql_source import SQLAlchemySourceDB
from tests.load.sources.sql_database.test_helpers import mock_json_column
from tests.load.sources.sql_database.test_sql_database_source import (
assert_row_counts,
convert_time_to_us,
default_test_callback,
Expand Down

0 comments on commit a6ee746

Please sign in to comment.