Skip to content

Commit a71da59

Browse files
Freshbot Demo Automation
Committed by Codefresh Freshbot Demo
2 parents c0e8381 + 0b0d2f9 commit a71da59

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/selenium/test_app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ def browser():
3232

3333
def test_confirm_vote_title(browser):
3434
browser.get("http://{}:80".format(vote_endpoint_ip))
35-
option_a = "New Orleans"
36-
option_b = "Disney World"
35+
option_a = "Denver"
36+
option_b = "Lego Land"
3737
assert "{} vs {}!".format(option_a, option_b) in browser.title
3838

3939
def test_confirm_vote_choice_form(browser):

vote/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
import random
66
import json
77

8-
option_a = os.getenv('OPTION_A', "New Orleans")
9-
option_b = os.getenv('OPTION_B', "Disney World")
8+
option_a = os.getenv('OPTION_A', "Denver")
9+
option_b = os.getenv('OPTION_B', "Lego Land")
1010
hostname = socket.gethostname()
1111

1212
app = Flask(__name__)

0 commit comments

Comments
 (0)