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__)