Skip to content

Commit b29cece

Browse files
committed
added project_id to system test
1 parent 75ac867 commit b29cece

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/google-cloud-bigquery/tests/system/test_ssl_retry.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@
2020
from google.api_core import exceptions as core_exceptions
2121
from google.cloud import bigquery
2222

23-
def test_insert_rows_json_ssl_error_no_retry(bigquery_client, dataset_id):
23+
def test_insert_rows_json_ssl_error_no_retry(bigquery_client, dataset_id, project_id):
2424
"""
2525
Verify that SSLError during insert_rows_json is NOT retried and
2626
propagates a descriptive error message immediately.
2727
"""
28-
table_id = f"{dataset_id}.test_ssl_retry_{int(time.time())}"
28+
table_id = f"{project_id}.{dataset_id}.test_ssl_retry_{int(time.time())}"
2929
schema = [bigquery.SchemaField("name", "STRING")]
3030
table = bigquery.Table(table_id, schema=schema)
3131
bigquery_client.create_table(table)

0 commit comments

Comments
 (0)