Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.
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
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ def test_input_conversion_to_float(self):
assert_equal(result.loc[2, 'f5'], True)
result.loc[2, 'f5'] = False
result = ~result
self.assertTrue(result.all(axis=None))
for val in result.all().tolist():
self.assertTrue(val)

# Check Filter
xf = Filter()
Expand Down