0
0
mirror of https://github.com/django/django.git synced 2024-11-21 19:09:18 +01:00

Handle windows difference

This commit is contained in:
Jacob Walls 2024-10-23 19:40:22 -04:00
parent 79935056ad
commit 2ab472ffd0

View File

@ -560,4 +560,5 @@ class UtilsTests(SimpleTestCase):
out = stderr.getvalue()
self.assertIn("Formatters failed to launch:", out)
self.assertIn(exception.__qualname__, out)
self.assertIn(location, out)
if sys.platform != "win32":
self.assertIn(location, out)