From be67400b477c1b0e7e81766f41bbceed0de74bdc Mon Sep 17 00:00:00 2001 From: Simon Charette Date: Fri, 17 Apr 2015 17:38:20 -0400 Subject: Refs #24652 -- Used SimpleTestCase where appropriate. --- tests/no_models/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/no_models') diff --git a/tests/no_models/tests.py b/tests/no_models/tests.py index bd17364071..de2d854006 100644 --- a/tests/no_models/tests.py +++ b/tests/no_models/tests.py @@ -1,8 +1,8 @@ from django.apps import apps -from django.test import TestCase +from django.test import SimpleTestCase -class NoModelTests(TestCase): +class NoModelTests(SimpleTestCase): def test_no_models(self): """Test that it's possible to load an app with no models.py file.""" -- cgit v1.3