summaryrefslogtreecommitdiff
path: root/tests/test_django.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_django.py')
-rw-r--r--tests/test_django.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/test_django.py b/tests/test_django.py
index fd4e044..ffdfe58 100644
--- a/tests/test_django.py
+++ b/tests/test_django.py
@@ -2,6 +2,8 @@
# Copyright (c) 2012-2013 Raphaƫl Barrois
# This code is distributed under the two-clause BSD License.
+from __future__ import unicode_literals
+
try: # pragma: no cover
import unittest2 as unittest
except ImportError: # pragma: no cover
@@ -28,7 +30,7 @@ if django_loaded: # pragma: no cover
'tests.django_test_app',
]
)
- from django_test_app import models
+ from .django_test_app import models
from django.core import serializers
try: # pragma: no cover