From c14473ec1c5f58f34e2e08215dba2b6847e23522 Mon Sep 17 00:00:00 2001 From: Evert Lammerts Date: Wed, 5 Nov 2025 13:07:32 +0100 Subject: [PATCH] Fix failing test due to changed error msg --- tests/fast/test_relation.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/fast/test_relation.py b/tests/fast/test_relation.py index 7b60a105..4d6f6591 100644 --- a/tests/fast/test_relation.py +++ b/tests/fast/test_relation.py @@ -280,7 +280,9 @@ def test_value_relation(self, duckdb_cursor): rel = duckdb_cursor.values((const(1), const(2), const(3)), const(4)) # Using Expressions that can't be resolved: - with pytest.raises(duckdb.BinderException, match='Referenced column "a" not found in FROM clause!'): + with pytest.raises( + duckdb.BinderException, match='Referenced column "a" was not found because the FROM clause is missing' + ): duckdb_cursor.values(duckdb.ColumnExpression("a")) def test_insert_into_operator(self):