Skip to content

Commit

Permalink
Merge pull request #19 from dustinvanbuskirk/apple-vs-banana
Browse files Browse the repository at this point in the history
apples or bananas
  • Loading branch information
dustinvanbuskirk authored Oct 2, 2018
2 parents 9b4a171 + fb1f842 commit 39ad7ff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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))
assert "Helm vs Serverless!" in browser.title
assert "Apple vs Banana!" in browser.title


def test_confirm_vote_choice_form(browser):
Expand Down
4 changes: 2 additions & 2 deletions vote/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import random
import json

option_a = os.getenv('OPTION_A', "Helm")
option_b = os.getenv('OPTION_B', "Serverless")
option_a = os.getenv('OPTION_A', "Apple")
option_b = os.getenv('OPTION_B', "Banana")
hostname = socket.gethostname()

app = Flask(__name__)
Expand Down

0 comments on commit 39ad7ff

Please sign in to comment.