# HG changeset patch # User Jeff Hammel # Date 1425163870 28800 # Node ID a09d5ffd2fc9357ff3137e72b07628f0c9d26b0a # Parent 7dd1b18c9f7854a3e06893c6c94696d424362d80 fix test diff -r 7dd1b18c9f78 -r a09d5ffd2fc9 tests/test_interpolation.py --- a/tests/test_interpolation.py Sat Feb 28 13:51:40 2015 -0800 +++ b/tests/test_interpolation.py Sat Feb 28 14:51:10 2015 -0800 @@ -43,7 +43,7 @@ data = [[(row[0], row[col]) for row in raw_data] for col in (1,2)] for series in data: - x_values = range(2,10) + x_values = range(2, 5) interpolated = linear_interpolation(series, x_values)