Mercurial > hg > numerics
changeset 67:a09d5ffd2fc9
fix test
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sat, 28 Feb 2015 14:51:10 -0800 |
parents | 7dd1b18c9f78 |
children | 07362c531a7e |
files | tests/test_interpolation.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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)