Skip to content

Commit

Permalink
fix(test): hog test regression
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusandra committed Jun 12, 2024
1 parent e4589cd commit 06bdca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posthog/clickhouse/client/test/test_execute_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def test_async_query_client_errors(self):
result = client.get_query_status(self.team.id, query_id)
self.assertTrue(result.error)
assert result.error_message
self.assertRegex(result.error_message, "no viable alternative at input")
self.assertRegex(result.error_message, "Unknown table")

def test_async_query_client_uuid(self):
query = build_query("SELECT toUUID('00000000-0000-0000-0000-000000000000')")
Expand Down

0 comments on commit 06bdca0

Please sign in to comment.