mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed #26747 -- Used more specific assertions in the Django test suite.
This commit is contained in:
parent
ea34426ae7
commit
4f336f6652
87 changed files with 406 additions and 406 deletions
|
@ -16,7 +16,7 @@ class TemplateTests(SimpleTestCase):
|
|||
def test_string_origin(self):
|
||||
template = Engine().from_string('string template')
|
||||
self.assertEqual(template.origin.name, UNKNOWN_SOURCE)
|
||||
self.assertEqual(template.origin.loader_name, None)
|
||||
self.assertIsNone(template.origin.loader_name)
|
||||
self.assertEqual(template.source, 'string template')
|
||||
|
||||
@override_settings(SETTINGS_MODULE=None)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue