File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -325,7 +325,7 @@ def test_is_datetimelike():
325
325
@pytest .mark .parametrize (
326
326
"dtype" ,
327
327
[
328
- type ( pd .Series ([1 , 2 ]) ),
328
+ pd .Series ([1 , 2 ]),
329
329
* ALL_INT_DTYPES ,
330
330
* to_numpy_dtypes (ALL_INT_DTYPES ),
331
331
* ALL_EA_INT_DTYPES ,
@@ -355,7 +355,7 @@ def test_is_not_integer_dtype(dtype):
355
355
@pytest .mark .parametrize (
356
356
"dtype" ,
357
357
[
358
- type ( pd .Series ([1 , 2 ]) ),
358
+ pd .Series ([1 , 2 ]),
359
359
* SIGNED_INT_DTYPES ,
360
360
* to_numpy_dtypes (SIGNED_INT_DTYPES ),
361
361
* SIGNED_EA_INT_DTYPES ,
@@ -389,7 +389,7 @@ def test_is_not_signed_integer_dtype(dtype):
389
389
@pytest .mark .parametrize (
390
390
"dtype" ,
391
391
[
392
- type ( pd .Series ([1 , 2 ], dtype = np .uint32 ) ),
392
+ pd .Series ([1 , 2 ], dtype = np .uint32 ),
393
393
* UNSIGNED_INT_DTYPES ,
394
394
* to_numpy_dtypes (UNSIGNED_INT_DTYPES ),
395
395
* UNSIGNED_EA_INT_DTYPES ,
You can’t perform that action at this time.
0 commit comments