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 5bea798 commit d455966Copy full SHA for d455966
test/test_util.py
@@ -330,6 +330,8 @@ def test_isna_element_b(self) -> None:
330
def test_isna_element_c(self) -> None:
331
self.assertFalse(isna_element(None, include_none=False))
332
self.assertTrue(isna_element(None, include_none=True))
333
+ self.assertFalse(isna_element(None, False))
334
+ self.assertTrue(isna_element(None, True))
335
336
337
#---------------------------------------------------------------------------
0 commit comments