From 575abdb4a3a79c8024bea2a626365a4b9db85624 Mon Sep 17 00:00:00 2001 From: Demofresh Bot Date: Thu, 12 Dec 2019 17:38:25 +0000 Subject: [PATCH] update for miami-or-cedar-point --- tests/selenium/test_app.py | 4 ++-- vote/app.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/selenium/test_app.py b/tests/selenium/test_app.py index bf34611a04..1fa364b1aa 100644 --- a/tests/selenium/test_app.py +++ b/tests/selenium/test_app.py @@ -32,8 +32,8 @@ def browser(): def test_confirm_vote_title(browser): browser.get("http://{}:80".format(vote_endpoint_ip)) - option_a = "New Orleans" - option_b = "Disney Land" + option_a = "Miami" + option_b = "Cedar Point" assert "{} vs {}!".format(option_a, option_b) in browser.title def test_confirm_vote_choice_form(browser): diff --git a/vote/app.py b/vote/app.py index bd3165a0ee..3526a55725 100644 --- a/vote/app.py +++ b/vote/app.py @@ -5,8 +5,8 @@ import random import json -option_a = os.getenv('OPTION_A', "New Orleans") -option_b = os.getenv('OPTION_B', "Disney Land") +option_a = os.getenv('OPTION_A', "Miami") +option_b = os.getenv('OPTION_B', "Cedar Point") hostname = socket.gethostname() app = Flask(__name__)