BUG: Typo in test_batchtransfom.

This commit is contained in:
Thomas Wiecki
2013-08-08 16:01:22 -04:00
parent 7a65f4579e
commit e590da75fb
+1 -1
View File
@@ -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()
)