fix: bump Helm chart release version (#18751) (#18758)

Co-authored-by: wiktor2200 <wiktor2200@users.noreply.github.com>
This commit is contained in:
John Bodley
2022-02-26 07:12:04 +13:00
committed by GitHub
parent 79633ce673
commit 099421770c
3 changed files with 17 additions and 37 deletions

View File

@@ -219,6 +219,10 @@ def test_import_csv_enforced_schema(mock_event_logger):
full_table_name = f"admin_database.{CSV_UPLOAD_TABLE_W_SCHEMA}"
# Invalid table name
resp = upload_csv(CSV_FILENAME1, full_table_name)
assert "Table name cannot contain a schema" in resp
# no schema specified, fail upload
resp = upload_csv(CSV_FILENAME1, CSV_UPLOAD_TABLE_W_SCHEMA, extra={"schema": None})
assert (