diff --git a/solutions/tests/test_IsPrime.py b/solutions/tests/test_IsPrime.py index c91d1e386..de2047e49 100644 --- a/solutions/tests/test_IsPrime.py +++ b/solutions/tests/test_IsPrime.py @@ -7,12 +7,12 @@ """ import unittest -from ..IsPrime import IsPrime +from solutions.IsPrime import IsPrime class TestIsPrime(unittest.TestCase): """test the IsPrime function""" - + def test_0(self): """It should evaluate not prime""" actual = IsPrime(0)