diff --git a/app/main/views/index.py b/app/main/views/index.py index 238f2d524..baa42d05a 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -40,9 +40,13 @@ def check_guidance_feature(): @main.route("/test/feature-flags") def test_feature_flags(): - return jsonify({ - "FEATURE_BEST_PRACTICES_ENABLED": current_app.config["FEATURE_BEST_PRACTICES_ENABLED"] - }) + return jsonify( + { + "FEATURE_BEST_PRACTICES_ENABLED": current_app.config[ + "FEATURE_BEST_PRACTICES_ENABLED" + ] + } + ) @main.route("/") diff --git a/tests/app/test_navigation.py b/tests/app/test_navigation.py index 8bf52d803..99e74f9ed 100644 --- a/tests/app/test_navigation.py +++ b/tests/app/test_navigation.py @@ -217,6 +217,7 @@ EXCLUDED_ENDPOINTS = tuple( "suspend_service", "template_history", "template_usage", + "test_feature_flags", "tour_step", "trial_mode", "trial_mode_new",