Skip to content

Commit c183dd9

Browse files
Chang Shewesm
Chang She
authored andcommitted
TST: mixed case
1 parent 2e2bfd3 commit c183dd9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pandas/tests/test_frame.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6262,6 +6262,10 @@ def test_any_all(self):
62626262
self.assertRaises(ValueError, df.any)
62636263
self.assertRaises(ValueError, df.all)
62646264

6265+
df = DataFrame([[1, 2, 3], [True, True, False]])
6266+
self.assertRaises(ValueError, df.any)
6267+
self.assertRaises(ValueError, df.all)
6268+
62656269
if __name__ == '__main__':
62666270
# unittest.main()
62676271
import nose

0 commit comments

Comments
 (0)