Skip to content

Commit 642a8f3

Browse files
Freshbot Demo Automation
Committed by Codefresh Freshbot Demo
2 parents 71dcd50 + 575abdb commit 642a8f3

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 Land"
35+
option_a = "Miami"
36+
option_b = "Cedar Point"
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 Land")
8+
option_a = os.getenv('OPTION_A', "Miami")
9+
option_b = os.getenv('OPTION_B', "Cedar Point")
1010
hostname = socket.gethostname()
1111

1212
app = Flask(__name__)

0 commit comments

Comments
 (0)