MAINT: Pass float to np.full explicitly.

This commit is contained in:
Scott Sanderson
2016-09-20 17:12:07 -04:00
parent 0ace6f7b8f
commit a39a6e1bbf
+1 -1
View File
@@ -3476,7 +3476,7 @@ class TestOrderCancelation(WithDataPortal,
'high': minutes_arr + 2, 'high': minutes_arr + 2,
'low': minutes_arr - 1, 'low': minutes_arr - 1,
'close': minutes_arr, 'close': minutes_arr,
'volume': np.full(minutes_count, 1), 'volume': np.full(minutes_count, 1.0),
}, },
index=asset_minutes, index=asset_minutes,
) )