From 905df55a2d7ae947029bf4cf37332ddbbb8592fe Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Mon, 18 Jul 2016 12:33:10 -0400 Subject: [PATCH] MAINT: Use float in np.full. --- tests/data/test_minute_bars.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/data/test_minute_bars.py b/tests/data/test_minute_bars.py index 426a42c0..8418b04d 100644 --- a/tests/data/test_minute_bars.py +++ b/tests/data/test_minute_bars.py @@ -590,7 +590,7 @@ class BcolzMinuteBarTestCase(WithTradingCalendars, 'high': full(9, nan), 'low': full(9, nan), 'close': full(9, nan), - 'volume': full(9, 0), + 'volume': full(9, 0.0), }, index=[minutes]) self.writer.write_sid(sid, data)