Mercurial > hg > numerics
comparison tests/test_interpolation.py @ 8:39f428e8f2b7
fix import
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Thu, 04 Sep 2014 18:25:22 -0700 |
parents | 2cad4536f797 |
children | 7dd1b18c9f78 |
comparison
equal
deleted
inserted
replaced
7:2cad4536f797 | 8:39f428e8f2b7 |
---|---|
6 | 6 |
7 import csv | 7 import csv |
8 import os | 8 import os |
9 import sys | 9 import sys |
10 import unittest | 10 import unittest |
11 from interpolation import linear_interpolation | 11 from numerics.interpolation import linear_interpolation |
12 | 12 |
13 # globals | 13 # globals |
14 here = os.path.dirname(os.path.abspath(__file__)) | 14 here = os.path.dirname(os.path.abspath(__file__)) |
15 test_data = os.path.join(here, 'test_data.csv') | 15 test_data = os.path.join(here, 'test_data.csv') |
16 | 16 |