From e590da75fbe69d77c0d506f676fbefcc27f0603d Mon Sep 17 00:00:00 2001 From: Thomas Wiecki Date: Thu, 8 Aug 2013 16:01:22 -0400 Subject: [PATCH] BUG: Typo in test_batchtransfom. --- tests/test_batchtransform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_batchtransform.py b/tests/test_batchtransform.py index a0e19fb7..8f5bdbbe 100644 --- a/tests/test_batchtransform.py +++ b/tests/test_batchtransform.py @@ -231,7 +231,7 @@ class TestBatchTransform(TestCase): # consecutive (of window length) numbers up till the end. for i in range(algo.window_length, len(test_history)): np.testing.assert_array_equal( - range(i - algo.window_length + 2, i + 2d), + range(i - algo.window_length + 2, i + 2), test_history[i].values.flatten() )