From 2ab472ffd0c37e2127433ff0ade639fdb94f976d Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Wed, 23 Oct 2024 19:40:22 -0400 Subject: [PATCH] Handle windows difference --- tests/user_commands/tests.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/user_commands/tests.py b/tests/user_commands/tests.py index b741ff09fb..9bfe52468c 100644 --- a/tests/user_commands/tests.py +++ b/tests/user_commands/tests.py @@ -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)