From 5cf9908437492ab1746a8670f4735bd88e902fa1 Mon Sep 17 00:00:00 2001 From: Bueller Date: Fri, 20 Sep 2024 14:28:23 -0400 Subject: [PATCH] Update app.py pugs test --- vote/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vote/app.py b/vote/app.py index 1d194b649b..9cf8666c94 100644 --- a/vote/app.py +++ b/vote/app.py @@ -6,7 +6,7 @@ import json option_a = os.getenv('OPTION_A', "Cats") -option_b = os.getenv('OPTION_B', "Dogs") +option_b = os.getenv('OPTION_B', "Pugs") hostname = socket.gethostname() app = Flask(__name__)