Skip to content

Commit

Permalink
Merge pull request #27 from dustinvanbuskirk/vote-season
Browse files Browse the repository at this point in the history
updating for season
  • Loading branch information
dustinvanbuskirk authored Oct 9, 2018
2 parents 81ad14c + 7439a91 commit c1db359
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 "Sunny vs Cloudy!" in browser.title
assert "Summer vs Winter!" 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', "Sunny")
option_b = os.getenv('OPTION_B', "Cloudy")
option_a = os.getenv('OPTION_A', "Summer")
option_b = os.getenv('OPTION_B', "Winter")
hostname = socket.gethostname()

app = Flask(__name__)
Expand Down

0 comments on commit c1db359

Please sign in to comment.