From e1cfc97cb8127aa35c2dafd75a2bfe58eb7d196d Mon Sep 17 00:00:00 2001 From: root Date: Fri, 4 Jan 2019 18:31:33 +0000 Subject: [PATCH] update for austin-or-disney-land --- 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 d727d68853..7bc38096a8 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 = "Chicago" - option_b = "Six Flags" + option_a = "Austin" + option_b = "Disney Land" 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 16eb6ba5be..35e013efb0 100644 --- a/vote/app.py +++ b/vote/app.py @@ -5,8 +5,8 @@ import random import json -option_a = os.getenv('OPTION_A', "Chicago") -option_b = os.getenv('OPTION_B', "Six Flags") +option_a = os.getenv('OPTION_A', "Austin") +option_b = os.getenv('OPTION_B', "Disney Land") hostname = socket.gethostname() app = Flask(__name__)