From 0c36b2f774cc36eb4c163962835133a84fb5f764 Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Tue, 21 Jan 2020 11:32:16 -0500 Subject: [PATCH] BUG: Fix moved import. --- tests/pipeline/test_statistical.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pipeline/test_statistical.py b/tests/pipeline/test_statistical.py index f92131b3..5a4a6049 100644 --- a/tests/pipeline/test_statistical.py +++ b/tests/pipeline/test_statistical.py @@ -1064,7 +1064,7 @@ class VectorizedBetaTestCase(zf.ZiplineTestCase): np.array([False, False, False, False, False])) -class VectorizedCorrelationTestCase(ZiplineTestCase): +class VectorizedCorrelationTestCase(zf.ZiplineTestCase): def naive_columnwise_func(self, func, left, right): out = np.empty_like(left[0])