diff options
Diffstat (limited to 'tests/app_loading/tests.py')
| -rw-r--r-- | tests/app_loading/tests.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/app_loading/tests.py b/tests/app_loading/tests.py index 19a1d03d74..d61205330a 100644 --- a/tests/app_loading/tests.py +++ b/tests/app_loading/tests.py @@ -75,12 +75,6 @@ class GetModelsTest(TestCase): self.assertEqual( apps.get_model("not_installed", "NotInstalledModel"), None) - def test_get_model_with_not_installed(self): - self.assertEqual( - apps.get_model( - "not_installed", "NotInstalledModel", only_installed=False), - self.not_installed_module.NotInstalledModel) - def test_get_models_only_returns_installed_models(self): self.assertNotIn( "NotInstalledModel", |
