aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Christie2014-09-15 13:10:58 +0100
committerTom Christie2014-09-15 13:10:58 +0100
commit3cf7ed10d23300104a4613bd6cf3333fd05556ab (patch)
treef303cd60b186948acf1ea92c857d621728fda4a9
parent40dc588a372375608701f7e521dea6d860a49eb2 (diff)
downloaddjango-rest-framework-3cf7ed10d23300104a4613bd6cf3333fd05556ab.tar.bz2
Fix erronous import
-rw-r--r--tests/test_modelinfo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_modelinfo.py b/tests/test_modelinfo.py
index 254a33c9..04b67f04 100644
--- a/tests/test_modelinfo.py
+++ b/tests/test_modelinfo.py
@@ -1,6 +1,6 @@
from django.test import TestCase
from django.utils import six
-from rest_framework.utils.modelinfo import _resolve_model
+from rest_framework.utils.model_meta import _resolve_model
from tests.models import BasicModel