Skip to content

Commit 538c10a

Browse files
Fix failing test due to changed error msg (#158)
2 parents 02ceac1 + c14473e commit 538c10a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/fast/test_relation.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,9 @@ def test_value_relation(self, duckdb_cursor):
280280
rel = duckdb_cursor.values((const(1), const(2), const(3)), const(4))
281281

282282
# Using Expressions that can't be resolved:
283-
with pytest.raises(duckdb.BinderException, match='Referenced column "a" not found in FROM clause!'):
283+
with pytest.raises(
284+
duckdb.BinderException, match='Referenced column "a" was not found because the FROM clause is missing'
285+
):
284286
duckdb_cursor.values(duckdb.ColumnExpression("a"))
285287

286288
def test_insert_into_operator(self):

0 commit comments

Comments
 (0)