We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8945003 commit 2e2826cCopy full SHA for 2e2826c
extensions/positron-python/python_files/posit/positron/tests/test_connections.py
@@ -44,7 +44,7 @@
44
HAS_DATABRICKS = False
45
46
try:
47
- from google.cloud import bigquery
+ import google.cloud.bigquery
48
49
HAS_GOOGLE_BIGQUERY = True
50
except ImportError:
@@ -114,7 +114,7 @@ def get_bigquery_connection(project: str = "bigquery-public-data"):
114
if not HAS_GOOGLE_BIGQUERY:
115
pytest.skip("Google BigQuery not available")
116
117
- return bigquery.Client(project=project)
+ return google.cloud.bigquery.Client(project=project)
118
119
120
def get_sqlite_connections():
0 commit comments