File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
tests/integration/test_adapters/test_spanner Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 7
7
from pytest_databases .docker .spanner import SpannerService
8
8
9
9
# Import sqlspec types
10
- from sqlspec .adapters .spanner import SpannerConfig , SpannerPoolConfig
10
+ from sqlspec .adapters .spanner import SpannerConfig , SpannerDriver , SpannerPoolConfig
11
11
12
12
13
13
@pytest .fixture (scope = "session" )
@@ -47,7 +47,7 @@ def sync_config(
47
47
def test_sync_config_properties (sync_config : Any ) -> None :
48
48
assert sync_config .is_async is False
49
49
assert sync_config .support_connection_pooling is True # Spanner uses pools
50
- assert issubclass (sync_config .driver_type , SpannerSyncDriver )
50
+ assert issubclass (sync_config .driver_type , SpannerDriver )
51
51
# Check connection_type can be resolved (might need adjustment based on actual Union)
52
52
assert sync_config .connection_type is not None
53
53
You can’t perform that action at this time.
0 commit comments