From 7241de66ae353c96ab08a3d1a0597ad09c22693c Mon Sep 17 00:00:00 2001 From: Carlton Gibson Date: Thu, 9 Aug 2018 14:09:42 +0200 Subject: [PATCH] Rename test_schemas.py to test_coreapi.py Which is largely what it is now. --- tests/schemas/{test_schemas.py => test_coreapi.py} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename tests/schemas/{test_schemas.py => test_coreapi.py} (99%) diff --git a/tests/schemas/test_schemas.py b/tests/schemas/test_coreapi.py similarity index 99% rename from tests/schemas/test_schemas.py rename to tests/schemas/test_coreapi.py index dbec93c6e..241f36e0c 100644 --- a/tests/schemas/test_schemas.py +++ b/tests/schemas/test_coreapi.py @@ -46,7 +46,7 @@ urlpatterns = [ @unittest.skipUnless(coreapi, 'coreapi is not installed') -@override_settings(ROOT_URLCONF='tests.schemas.test_schemas') +@override_settings(ROOT_URLCONF='tests.schemas.test_coreapi') class TestRouterGeneratedSchema(TestCase): def test_anonymous_request(self): client = APIClient()