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
salesdemocf authored Jan 4, 2019
2 parents 5c663cb + 5473419 commit 58603e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/selenium/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def browser():

def test_confirm_vote_title(browser):
browser.get("http://{}:80".format(vote_endpoint_ip))
option_a = "Austin"
option_a = "New York"
option_b = "Disney Land"
assert "{} vs {}!".format(option_a, option_b) in browser.title

Expand Down
2 changes: 1 addition & 1 deletion vote/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import random
import json

option_a = os.getenv('OPTION_A', "Austin")
option_a = os.getenv('OPTION_A', "New York")
option_b = os.getenv('OPTION_B', "Disney Land")
hostname = socket.gethostname()

Expand Down

0 comments on commit 58603e9

Please sign in to comment.