diff options
| author | Tom Christie | 2012-12-21 09:15:08 +0000 |
|---|---|---|
| committer | Tom Christie | 2012-12-21 09:15:08 +0000 |
| commit | 37acea52406edcb1c14f52360c8262ad992b8e4a (patch) | |
| tree | bf0740bdd547fbb9d99e3182aaf729d7ab9a138d /rest_framework/tests/relations_hyperlink.py | |
| parent | 83feda6a69317025a0574af630faeaf254b99aed (diff) | |
| download | django-rest-framework-37acea52406edcb1c14f52360c8262ad992b8e4a.tar.bz2 | |
Fix up test url model now filename has changed
Diffstat (limited to 'rest_framework/tests/relations_hyperlink.py')
| -rw-r--r-- | rest_framework/tests/relations_hyperlink.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rest_framework/tests/relations_hyperlink.py b/rest_framework/tests/relations_hyperlink.py index 9e8ecf70..53ce0074 100644 --- a/rest_framework/tests/relations_hyperlink.py +++ b/rest_framework/tests/relations_hyperlink.py @@ -78,7 +78,7 @@ class NullableForeignKeySourceSerializer(serializers.HyperlinkedModelSerializer) # TODO: Add test that .data cannot be accessed prior to .is_valid class HyperlinkedManyToManyTests(TestCase): - urls = 'rest_framework.tests.hyperlink_relations' + urls = 'rest_framework.tests.relations_hyperlink' def setUp(self): for idx in range(1, 4): @@ -186,7 +186,7 @@ class HyperlinkedManyToManyTests(TestCase): class HyperlinkedForeignKeyTests(TestCase): - urls = 'rest_framework.tests.hyperlink_relations' + urls = 'rest_framework.tests.relations_hyperlink' def setUp(self): target = ForeignKeyTarget(name='target-1') @@ -243,7 +243,7 @@ class HyperlinkedForeignKeyTests(TestCase): class HyperlinkedNullableForeignKeyTests(TestCase): - urls = 'rest_framework.tests.hyperlink_relations' + urls = 'rest_framework.tests.relations_hyperlink' def setUp(self): target = ForeignKeyTarget(name='target-1') |
