We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2373c6c commit e978f25Copy full SHA for e978f25
1 file changed
wolframclient/tests/serializers/wxf_pythonarray.py
@@ -13,6 +13,7 @@ class TestCase(BaseTestCase):
13
def test_python_array(self):
14
15
for array, numpy_type, wl_type in (
16
+ ([True, False, True, False, True, False], numpy.int8, "Integer8"),
17
([1, 2, 3, 4, 5, 6], numpy.int8, "Integer8"),
18
([1, 2, 3, 4, 5, 6], numpy.int32, "Integer32"),
19
([1, 2, 3, 4, 5, 6], numpy.int64, "Integer64"),
0 commit comments