Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bharatnc committed Dec 4, 2023
1 parent efbf39e commit 25d1d59
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 34 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_wrong_db_or_table_name/test.py
Expand Up @@ -68,7 +68,7 @@ def test_wrong_table_name(start):
)
with pytest.raises(
QueryRuntimeException,
match="DB::Exception: Table test.table_test1 does not exist. Maybe you meant table_test?.",
match="DB::Exception: Table test.table_test1 does not exist. Maybe you meant test.table_test?.",
):
node.query(
"""
Expand Down Expand Up @@ -96,7 +96,7 @@ def test_drop_wrong_table_name(start):

with pytest.raises(
QueryRuntimeException,
match="DB::Exception: Table test.table_tes does not exist. Maybe you meant table_test?.",
match="DB::Exception: Table test.table_tes does not exist. Maybe you meant test.table_test?.",
):
node.query("DROP TABLE test.table_tes;")
assert int(node.query("SELECT count() FROM test.table_test;")) == 1
Expand Down

This file was deleted.

This file was deleted.

0 comments on commit 25d1d59

Please sign in to comment.