MAINT: Explicitly use float64 in test.

This commit is contained in:
Scott Sanderson
2016-07-13 16:31:06 -04:00
parent d2f0632101
commit be30c0072d
+2 -2
View File
@@ -158,8 +158,8 @@ class TestFastStochasticOscillator(ZiplineTestCase):
fso = FastStochasticOscillator()
today = pd.Timestamp('2015')
assets = np.arange(3, dtype=np.float)
out = np.empty(shape=(3,), dtype=np.float)
assets = np.arange(3, dtype=np.float64)
out = np.empty(shape=(3,), dtype=np.float64)
highs = np.full((50, 3), 3)
lows = np.full((50, 3), 2)