summaryrefslogtreecommitdiff
path: root/tests/test_authcookie.py
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2021-01-14 13:31:38 +0100
committerMatěj Cepl <mcepl@cepl.eu>2021-01-14 14:31:04 +0100
commitae73548cf705d2c603b6f1d7f9a140940def837c (patch)
tree0157642befa6435188595eddf5c3bd769b964857 /tests/test_authcookie.py
parent5541bb16cec1623be63188f25048cdb75ab26843 (diff)
downloadm2crypto-ae73548cf705d2c603b6f1d7f9a140940def837c.tar.gz
Replace 'from . import' with absolute imports.
Diffstat (limited to 'tests/test_authcookie.py')
-rwxr-xr-xtests/test_authcookie.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_authcookie.py b/tests/test_authcookie.py
index 0bd89f6..953e1cf 100755
--- a/tests/test_authcookie.py
+++ b/tests/test_authcookie.py
@@ -10,7 +10,7 @@ import time
from M2Crypto import EVP, Rand, six, util
from M2Crypto.AuthCookie import AuthCookie, AuthCookieJar, mix, unmix, unmix3
from M2Crypto.six.moves.http_cookies import SimpleCookie # pylint: disable=no-name-in-module,import-error
-from . import unittest
+from tests import unittest
log = logging.getLogger(__name__)