Skip to content

Commit 3f3a794

Browse files
committed
fix precommit
1 parent 67b9900 commit 3f3a794

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/fast/test_relation.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,10 @@ def test_value_relation(self, duckdb_cursor):
283283
# Accept both historical and current Binder error message variants
284284
with pytest.raises(
285285
duckdb.BinderException,
286-
match=r'Referenced column "a" not found in FROM clause!|Referenced column "a" was not found because the FROM clause is missing',
286+
match=(
287+
r'Referenced column "a" not found in FROM clause!|'
288+
r'Referenced column "a" was not found because the FROM clause is missing'
289+
),
287290
):
288291
duckdb_cursor.values(duckdb.ColumnExpression("a"))
289292

0 commit comments

Comments
 (0)