diff --git a/rfc1924/tests/test_rfc1924.py b/rfc1924/tests/test_rfc1924.py index e58e38b..bfbe3d0 100644 --- a/rfc1924/tests/test_rfc1924.py +++ b/rfc1924/tests/test_rfc1924.py @@ -1,5 +1,4 @@ -from rfc1924 import * -import pytest +from rfc1924 import encode, decode, savings def test_encode(): assert encode("2345:425:2ca1::567:5673:23b5") == "AN?6(i3Y+yVr74uX@J3P" @@ -8,4 +7,4 @@ def test_decode(): assert decode("AN?6(i3Y+yVr74uX@J3P") == "2345:425:2ca1::567:5673:23b5" def test_savings(): - assert (savings("2345:425:2ca1::567:5673:23b5") == 'You saved 28%') \ No newline at end of file + assert (savings("2345:425:2ca1::567:5673:23b5") == 'You saved 28%')