Skip to content

Commit

Permalink
Freshbot Demo Automation
Browse files Browse the repository at this point in the history
Committed by Codefresh Freshbot Demo
  • Loading branch information
dustinvanbuskirk authored Dec 12, 2019
2 parents 71dcd50 + 575abdb commit 642a8f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/selenium/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
4 changes: 2 additions & 2 deletions vote/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)
Expand Down

0 comments on commit 642a8f3

Please sign in to comment.