Skip to content

Commit 7b0c2a4

Browse files
committed
Added to test
1 parent a074c6e commit 7b0c2a4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pandas/tests/io/msgpack/test_pack.py

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
from pandas import compat
88
from pandas.compat import u, OrderedDict
99
from pandas.io.msgpack import packb, unpackb, Unpacker, Packer
10+
from numpy import bool_
1011

1112

1213
class TestPack(object):
@@ -25,6 +26,7 @@ def testPack(self):
2526
(), ((),), ((), None,),
2627
{None: 0},
2728
(1 << 23),
29+
bool_(1), bool_(0),
2830
]
2931
for td in test_data:
3032
self.check(td)

0 commit comments

Comments
 (0)