From 80ffdae3a2d44efbcc29397342c2eae229d65ef7 Mon Sep 17 00:00:00 2001 From: Sanjeev Bhatt Date: Wed, 25 Feb 2026 07:35:13 +0000 Subject: [PATCH] test: add `not_postgres` fixture to `test_table_not_found` system test. #1484 --- tests/system/test_database_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/system/test_database_api.py b/tests/system/test_database_api.py index d47826baf4..85062fcc43 100644 --- a/tests/system/test_database_api.py +++ b/tests/system/test_database_api.py @@ -304,7 +304,7 @@ def test_iam_policy( assert new_policy.bindings[0] == new_binding -def test_table_not_found(shared_instance): +def test_table_not_found(shared_instance, not_postgres): temp_db_id = _helpers.unique_id("tbl_not_found", separator="_") correct_table = "MyTable"