TST: Change AverageDollarVolume test to check case of partial NaNs

This commit is contained in:
Nathan Wolfe
2016-06-29 11:16:39 -04:00
parent ebbcca73e8
commit e67b5e5516
+1 -1
View File
@@ -1056,7 +1056,7 @@ class ParameterizedFactorTestCase(WithTradingEnvironment, ZiplineTestCase):
index=dates,
columns=cls.asset_finder.retrieve_all(sids),
)
cls.raw_data_with_nans = cls.raw_data.where(cls.raw_data % 3 != 0)
cls.raw_data_with_nans = cls.raw_data.where((cls.raw_data % 2) != 0)
open_loader = DataFrameLoader(
USEquityPricing.open,