We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8e9f1ec + 522fa5a commit 77e7b76Copy full SHA for 77e7b76
app/app.py
@@ -3,7 +3,7 @@
3
4
@app.route('/')
5
def hello():
6
- return "Hello Docker and GitHub!"
+ return "Hello Docker and YouTube!"
7
8
if __name__ == '__main__':
9
app.run(host='0.0.0.0')
app/tests/test_works.py
@@ -1,4 +1,4 @@
1
def test_index(app, client):
2
res = client.get('/')
assert res.status_code == 200
- assert res.get_data(as_text=True) == "Hello Docker and GitHub!"
+ assert res.get_data(as_text=True) == "Hello Docker and YouTube!"
0 commit comments