Skip to content

Commit

Permalink
Merge pull request #63 from sanga/small_fixes
Browse files Browse the repository at this point in the history
Removed Flask deprecation warning during tests
  • Loading branch information
heyman committed Apr 3, 2013
2 parents ba9ec8c + 326802d commit b3fc8ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion locust/test/testcases.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def basic_auth():

@app.route("/no_content_length")
def no_content_length():
r = send_file(StringIO("This response does not have content-length in the header"))
r = send_file(StringIO("This response does not have content-length in the header"), add_etags=False)
return r

@app.errorhandler(404)
Expand Down

0 comments on commit b3fc8ef

Please sign in to comment.