Skip to content

Commit

Permalink
Merge pull request #16 from dustinvanbuskirk/jenkins-vs-codefresh
Browse files Browse the repository at this point in the history
Looks amazing!
  • Loading branch information
dustinvanbuskirk authored Oct 1, 2018
2 parents 4ab3ae8 + 4ac6e33 commit 915163e
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 "OpenStack vs AWS!" in browser.title
assert "Jenkins vs Codefresh!" 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', "OpenStack")
option_b = os.getenv('OPTION_B', "AWS")
option_a = os.getenv('OPTION_A', "Jenkins")
option_b = os.getenv('OPTION_B', "Codefresh")
hostname = socket.gethostname()

app = Flask(__name__)
Expand Down

0 comments on commit 915163e

Please sign in to comment.