Skip to content

Commit 8b303a6

Browse files
Fixed lib paths in mesh and integrator tests
1 parent 7690bf5 commit 8b303a6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/cuboid_mesh_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from __future__ import print_function
22
import numpy as np
3-
from .cuboid_mesh import CuboidMesh
3+
from fidimag.common.cuboid_mesh import CuboidMesh
44

55

66
def allclose(a, b):

tests/integrators_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import pytest
99
import numpy as np
1010
from math import ceil
11-
from .integrators import euler_step, runge_kutta_step, StepIntegrator, ScipyIntegrator
11+
from fidimag.common.integrators import euler_step, runge_kutta_step, StepIntegrator, ScipyIntegrator
1212

1313

1414
interval = (0, 10)

0 commit comments

Comments
 (0)