From cbd4ea36bca615f41e733df3518767fb24b6b9fc Mon Sep 17 00:00:00 2001 From: Scott Sanderson Date: Fri, 13 May 2016 14:31:33 -0400 Subject: [PATCH] STY: No need for these to be vertical. --- tests/pipeline/test_technical.py | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/tests/pipeline/test_technical.py b/tests/pipeline/test_technical.py index c2b1dfc6..335b90c9 100644 --- a/tests/pipeline/test_technical.py +++ b/tests/pipeline/test_technical.py @@ -128,15 +128,6 @@ class BollingerBandsTestCase(WithTechnicalFactor, ZiplineTestCase): closes, ) - assert_equal( - result.upper, - expected_upper, - ) - assert_equal( - result.middle, - expected_middle, - ) - assert_equal( - result.lower, - expected_lower, - ) + assert_equal(result.upper, expected_upper) + assert_equal(result.middle, expected_middle) + assert_equal(result.lower, expected_lower)