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 77from pytest_databases .docker .spanner import SpannerService
88
99# Import sqlspec types
10- from sqlspec .adapters .spanner import SpannerConfig , SpannerPoolConfig
10+ from sqlspec .adapters .spanner import SpannerConfig , SpannerDriver , SpannerPoolConfig
1111
1212
1313@pytest .fixture (scope = "session" )
@@ -47,7 +47,7 @@ def sync_config(
4747def test_sync_config_properties (sync_config : Any ) -> None :
4848 assert sync_config .is_async is False
4949 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 )
5151 # Check connection_type can be resolved (might need adjustment based on actual Union)
5252 assert sync_config .connection_type is not None
5353
You can’t perform that action at this time.
0 commit comments