From 45a1b1a7afe1f1defc112c65b1d29c8ed932ba5a Mon Sep 17 00:00:00 2001 From: Stephane Martin Date: Sun, 4 Sep 2016 23:25:55 +0200 Subject: [PATCH] make imports absolute --- realms/lib/test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/realms/lib/test.py b/realms/lib/test.py index 5d9b4e9..e416e24 100644 --- a/realms/lib/test.py +++ b/realms/lib/test.py @@ -6,8 +6,8 @@ import tempfile from flask_testing import TestCase -from realms.lib.util import random_string from realms import create_app +from realms.lib.util import random_string class BaseTest(TestCase):