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 c0e8381 + 0b0d2f9 commit a71da59Copy full SHA for a71da59
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 World"
+ option_a = "Denver"
+ option_b = "Lego Land"
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 World")
+option_a = os.getenv('OPTION_A', "Denver")
+option_b = os.getenv('OPTION_B', "Lego Land")
10
hostname = socket.gethostname()
11
12
app = Flask(__name__)
0 commit comments