Skip to content

Commit 75181a2

Browse files
committed
Add new line at EOF.
1 parent 1440722 commit 75181a2

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tests/fast/test_relation.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -690,9 +690,8 @@ def create_view(con, view_name: str) -> None:
690690
assert res == expected
691691

692692
def test_relation_select_dtypes_quotes_identifiers_with_spaces(self, duckdb_cursor):
693-
# Regression test for select_dtypes on columns requiring identifier quoting (e.g., spaces)
694693
df = pd.DataFrame({"na me": ["alice", "bob"], "x": [1, 2]})
695694
rel = duckdb_cursor.from_df(df)
696695
out = rel.select_dtypes([duckdb.sqltypes.VARCHAR]).fetchdf()
697696
assert list(out.columns) == ["na me"]
698-
assert out["na me"].tolist() == ["alice", "bob"]
697+
assert out["na me"].tolist() == ["alice", "bob"]

0 commit comments

Comments
 (0)