Refs #24978 -- Amended test filename to avoid checkout warnings on Windows.

This commit is contained in:
Gagaro 2015-06-20 19:07:06 +02:00 committed by Tim Graham
parent ffdf507ec0
commit 8b7bd62ae5
2 changed files with 1 additions and 1 deletions

View File

@ -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):