Tests: changing Python application callable name.

This commit is contained in:
Max Romanov
2020-09-21 10:32:14 +03:00
parent 7842c2d980
commit af964488ba
2 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
def application(env, start_response):
start_response('204', [('Content-Length', '0')])
return []
def app(env, start_response):
start_response('200', [('Content-Length', '0')])
return []