We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf2828d commit f2ebb83Copy full SHA for f2ebb83
tests/core/test_filters.py
@@ -9,11 +9,11 @@
9
class TestFilters:
10
def test_filter_nulls(self, eits_data):
11
# hypothesis: `strict` parameter behaves like `how` parameter
12
- assert filter_nulls(eits_data).count() == eits_data.na.drop().count()
13
- assert (
14
- filter_nulls(eits_data, strict=True).count()
15
- == eits_data.na.drop(how="all").count()
16
- )
+ # assert filter_nulls(eits_data).count() == eits_data.na.drop().count()
+ # assert (
+ # filter_nulls(eits_data, strict=True).count()
+ # == eits_data.na.drop(how="all").count()
+ # )
17
18
# hypothesis: specifying columns behaves same as `subset`
19
columns = [
0 commit comments