BUG: Specify int64 instead of system int

to handle 32bit python
This commit is contained in:
Richard Frank
2016-03-23 15:26:52 -04:00
parent 0ac379eb74
commit d873038a7e
4 changed files with 8 additions and 5 deletions
+1 -1
View File
@@ -280,7 +280,7 @@ class PreprocessTestCase(TestCase):
self.assertIs(c_ret, good_c)
with self.assertRaises(TypeError) as e:
foo(good_a, arange(3), good_c)
foo(good_a, arange(3, dtype='int64'), good_c)
expected_message = (
"{qualname}() expected a value with dtype 'datetime64[ns]'"