Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2974,7 +2974,10 @@ def test_bigquery_magic_query_variable_not_identifier():
# considered a table name, thus we expect an error that the table ID is not valid.
output = captured_io.stderr
assert "ERROR:" in output
assert "must be a fully-qualified ID" in output
assert (
"must be a fully-qualified ID" in output
or "Could not parse table_id." in output
)


@pytest.mark.usefixtures("mock_credentials")
Expand Down
Loading