From 484a4b4c4f712d04445a13aaa35cd1b68b47ac3a Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Tue, 17 Sep 2024 11:54:06 -0600 Subject: [PATCH] lint --- src/registrar/tests/test_templatetags.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/registrar/tests/test_templatetags.py b/src/registrar/tests/test_templatetags.py index ecd8accbd..1ec63dcce 100644 --- a/src/registrar/tests/test_templatetags.py +++ b/src/registrar/tests/test_templatetags.py @@ -93,17 +93,17 @@ class CustomFiltersTestCase(TestCase): ] result = contains_checkbox(html_list) self.assertFalse(result) # Expecting False - + def test_is_domain_subpage(self): """Tests if the path is recognized as a domain subpage.""" self.assertTrue(is_domain_subpage("/domains/")) self.assertFalse(is_domain_subpage("/")) - + def test_is_domain_request_subpage(self): """Tests if the path is recognized as a domain request subpage.""" self.assertTrue(is_domain_request_subpage("/requests/")) self.assertFalse(is_domain_request_subpage("/")) - + def test_is_portfolio_subpage(self): """Tests if the path is recognized as a portfolio subpage.""" self.assertTrue(is_portfolio_subpage("/organization/"))