From f68fa8b45dfac545cfc4111d4e52804c86db68d3 Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Fri, 4 Feb 2022 07:45:13 +0100 Subject: [PATCH] Refs #33476 -- Changed quotation marks in DebugViewTests.test_template_exceptions(). This prevents a failure after reformatting the code with Black. --- tests/view_tests/templatetags/debugtags.py | 2 +- tests/view_tests/tests/test_debug.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/view_tests/templatetags/debugtags.py b/tests/view_tests/templatetags/debugtags.py index d08b3c079e0..7f0df767a3e 100644 --- a/tests/view_tests/templatetags/debugtags.py +++ b/tests/view_tests/templatetags/debugtags.py @@ -5,4 +5,4 @@ register = template.Library() @register.simple_tag def go_boom(): - raise Exception('boom') + raise Exception("boom") diff --git a/tests/view_tests/tests/test_debug.py b/tests/view_tests/tests/test_debug.py index 8fc7ea2fcd3..1484c071c51 100644 --- a/tests/view_tests/tests/test_debug.py +++ b/tests/view_tests/tests/test_debug.py @@ -258,7 +258,8 @@ class DebugViewTests(SimpleTestCase): except Exception: raising_loc = inspect.trace()[-1][-2][0].strip() self.assertNotEqual( - raising_loc.find("raise Exception('boom')"), -1, + raising_loc.find('raise Exception("boom")'), + -1, "Failed to find 'raise Exception' in last frame of " "traceback, instead found: %s" % raising_loc )