Skip to content
Snippets Groups Projects
Commit 08b4e196 authored by Fengshan Zheng's avatar Fengshan Zheng
Browse files

u

parent 50962b20
No related branches found
No related tags found
No related merge requests found
......@@ -20,9 +20,9 @@ class TestCaseKernel(unittest.TestCase):
self.kernel = None
def test_kernel(self):
ref_u = np.load(os.path.join(self.path, 'ref_kc.npy'))
ref_u = np.load(os.path.join(self.path, 'ref_u.npy'))
ref_v = np.load(os.path.join(self.path, 'ref_v.npy'))
ref_u_fft = np.load(os.path.join(self.path, 'ref_kc_fft.npy'))
ref_u_fft = np.load(os.path.join(self.path, 'ref_u_fft.npy'))
ref_v_fft = np.load(os.path.join(self.path, 'ref_v_fft.npy'))
assert_allclose(self.kernel.u, ref_u, err_msg='Unexpected behavior in u')
assert_allclose(self.kernel.v, ref_v, err_msg='Unexpected behavior in v')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment