diff options
| author | Susan Dreher | 2015-01-27 16:31:25 -0500 | 
|---|---|---|
| committer | Susan Dreher | 2015-01-27 16:31:25 -0500 | 
| commit | 1714ceae9f468bc1479f0d7a32b0bf26ae9cf15f (patch) | |
| tree | b842aa631eed051b62ed23da1809289a67e7daf2 /tests/test_relations.py | |
| parent | 8c3f82fb18a58b8e0983612ef3cc35b3c3950b66 (diff) | |
| download | django-rest-framework-1714ceae9f468bc1479f0d7a32b0bf26ae9cf15f.tar.bz2 | |
reorganize imports
Diffstat (limited to 'tests/test_relations.py')
| -rw-r--r-- | tests/test_relations.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/tests/test_relations.py b/tests/test_relations.py index 143e835c..67f49c6b 100644 --- a/tests/test_relations.py +++ b/tests/test_relations.py @@ -1,13 +1,13 @@ -import pytest +from .utils import mock_reverse, fail_reverse, BadType, MockObject, MockQueryset  from django.core.exceptions import ImproperlyConfigured  from django.utils.datastructures import MultiValueDict  from rest_framework import serializers  from rest_framework.fields import empty -from rest_framework.test import APISimpleTestCase -from .utils import mock_reverse, fail_reverse, BadType, MockObject, MockQueryset +from rest_framework.test import APISimpleTestCase +import pytest  class TestStringRelatedField(APISimpleTestCase): | 
