MAINT: Pass float to np.full explicitly.

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