Refs #24978 -- Amended test filename to avoid checkout warnings on Windows.
This commit is contained in:
parent
ffdf507ec0
commit
8b7bd62ae5
|
@ -228,7 +228,7 @@ class FixtureLoadingTests(DumpDataAssertMixin, TestCase):
|
|||
|
||||
@unittest.skipIf(sys.platform.startswith('win'), "Windows doesn't support '?' in filenames.")
|
||||
def test_load_fixture_with_special_characters(self):
|
||||
management.call_command('loaddata', 'fixture?with[special]chars*', verbosity=0)
|
||||
management.call_command('loaddata', 'fixture_with[special]chars', verbosity=0)
|
||||
self.assertQuerysetEqual(Article.objects.all(), ['<Article: How To Deal With Special Characters>'])
|
||||
|
||||
def test_dumpdata_with_filtering_manager(self):
|
||||
|
|
Loading…
Reference in New Issue