From 8fd968028492f113a91358b87ee045f3f2b5d38b Mon Sep 17 00:00:00 2001 From: "Christopher C. Wells" Date: Mon, 30 Aug 2021 04:20:43 -0700 Subject: [PATCH] Update existing test for icon class changes --- core/templatetags/bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/templatetags/bootstrap.py b/core/templatetags/bootstrap.py index d28c5f91..673df1d6 100644 --- a/core/templatetags/bootstrap.py +++ b/core/templatetags/bootstrap.py @@ -16,5 +16,5 @@ def bool_icon(value): classes = 'icon-true text-success' else: classes = 'icon-false text-danger' - icon_html = ''.format(classes) + icon_html = ''.format(classes) return mark_safe(icon_html)