Skip to content

Commit

Permalink
project
Browse files Browse the repository at this point in the history
  • Loading branch information
xando committed Jun 12, 2024
1 parent a556cbe commit b31db10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ def LOCATION():
def _remove_table(LOCATION):
from google.cloud import bigquery

bigquery.Client(project="xando-1-main").delete_table(LOCATION, not_found_ok=True)
bigquery.Client(project=PROJECT).delete_table(LOCATION, not_found_ok=True)
yield
bigquery.Client(project="xando-1-main").delete_table(LOCATION, not_found_ok=True)
bigquery.Client(project=PROJECT).delete_table(LOCATION, not_found_ok=True)


def test_simple(LOCATION):
Expand Down

0 comments on commit b31db10

Please sign in to comment.