Skip to content

Commit

Permalink
fix assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
colin-ho committed Feb 24, 2024
1 parent f839bf2 commit b1b07d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/sql/test_databases.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ def test_trino_create_dataframe_ok(db_url) -> None:
df = daft.read_sql("SELECT * FROM tpch.sf1.nation", url)
pd_df = pd.read_sql("SELECT * FROM tpch.sf1.nation", url)

assert df.equals(pd_df)
assert df.to_pandas().equals(pd_df)

0 comments on commit b1b07d8

Please sign in to comment.