Python: Minor fix in test

This commit is contained in:
Rasmus Wriedt Larsen
2023-08-18 10:19:44 +02:00
parent cf54d3f4ca
commit 33f8998c2e

View File

@@ -5,13 +5,13 @@ import chevron
app = Flask(__name__)
@route('/other')
@app.route('/other')
def a():
template = request.args.get('template')
return chevron.render(template, {"key": "value"})
@route('/other2')
@app.route('/other2')
def b():
template = request.args.get('template')
args = {