(self)
| 229 | ) |
| 230 | |
| 231 | def test_valid_site_id(self): |
| 232 | for site_id in [1, None]: |
| 233 | with self.subTest(site_id=site_id), self.settings(SITE_ID=site_id): |
| 234 | self.assertEqual(check_site_id(None), []) |
| 235 | |
| 236 | |
| 237 | @override_settings(ALLOWED_HOSTS=["example.com"]) |
nothing calls this directly
no test coverage detected