From a4a2f97df6e50621fdac437f64676f96462c0d87 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 17 Jan 2019 21:14:01 +0000 Subject: [PATCH] update for san-francisco-or-six-flags --- 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 be7edf2e40..ae51ab4629 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 = "Portland" - option_b = "Cedar Point" + option_a = "San Francisco" + option_b = "Six Flags" 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 32c8324c43..54e82fb8c3 100644 --- a/vote/app.py +++ b/vote/app.py @@ -5,8 +5,8 @@ import random import json -option_a = os.getenv('OPTION_A', "Portland") -option_b = os.getenv('OPTION_B', "Cedar Point") +option_a = os.getenv('OPTION_A', "San Francisco") +option_b = os.getenv('OPTION_B', "Six Flags") hostname = socket.gethostname() app = Flask(__name__)