Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: polars equality function rename in tests #3065

Merged
merged 1 commit into from
Jul 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions bindings/python/tests/test_polars.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def test_sql():
}
)

assert out.frame_equal(expected)
assert out.equals(expected)
con.close()


Expand All @@ -51,8 +51,8 @@ def test_sql_multiple_references():
}
)

assert out1.frame_equal(expected)
assert out2.frame_equal(expected)
assert out1.equals(expected)
assert out2.equals(expected)
con.close()


Expand Down Expand Up @@ -90,7 +90,7 @@ def inner_func():
}
)

assert out.frame_equal(expected)
assert out.equals(expected)


def test_execute():
Expand All @@ -114,7 +114,7 @@ def test_execute():
}
)

assert out.frame_equal(expected)
assert out.equals(expected)
con.close()

def test_select_polars_lazy():
Expand All @@ -138,5 +138,5 @@ def test_select_polars_lazy():
}
)

assert out.frame_equal(expected)
assert out.equals(expected)
con.close()