We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 71dcd50 + 575abdb commit 642a8f3Copy full SHA for 642a8f3
tests/selenium/test_app.py
@@ -32,8 +32,8 @@ def browser():
32
33
def test_confirm_vote_title(browser):
34
browser.get("http://{}:80".format(vote_endpoint_ip))
35
- option_a = "New Orleans"
36
- option_b = "Disney Land"
+ option_a = "Miami"
+ option_b = "Cedar Point"
37
assert "{} vs {}!".format(option_a, option_b) in browser.title
38
39
def test_confirm_vote_choice_form(browser):
vote/app.py
@@ -5,8 +5,8 @@
5
import random
6
import json
7
8
-option_a = os.getenv('OPTION_A', "New Orleans")
9
-option_b = os.getenv('OPTION_B', "Disney Land")
+option_a = os.getenv('OPTION_A', "Miami")
+option_b = os.getenv('OPTION_B', "Cedar Point")
10
hostname = socket.gethostname()
11
12
app = Flask(__name__)
0 commit comments