From 4ac6e336f09b19deacce048bc5f0afb957c63138 Mon Sep 17 00:00:00 2001 From: Dustin Van Buskirk Date: Mon, 1 Oct 2018 13:15:44 -0700 Subject: [PATCH] updaintg for demo --- tests/selenium/test_app.py | 2 +- vote/app.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/selenium/test_app.py b/tests/selenium/test_app.py index aa4f5f08dd..3a6ddf3f88 100644 --- a/tests/selenium/test_app.py +++ b/tests/selenium/test_app.py @@ -32,7 +32,7 @@ def browser(): def test_confirm_vote_title(browser): browser.get("http://{}:80".format(vote_endpoint_ip)) - assert "OpenStack vs AWS!" in browser.title + assert "Jenkins vs Codefresh!" in browser.title def test_confirm_vote_choice_form(browser): diff --git a/vote/app.py b/vote/app.py index b27668cb02..c2d6e0a627 100644 --- a/vote/app.py +++ b/vote/app.py @@ -5,8 +5,8 @@ import random import json -option_a = os.getenv('OPTION_A', "OpenStack") -option_b = os.getenv('OPTION_B', "AWS") +option_a = os.getenv('OPTION_A', "Jenkins") +option_b = os.getenv('OPTION_B', "Codefresh") hostname = socket.gethostname() app = Flask(__name__)