python_devops_book
python_devops_book copied to clipboard
Load Testing with molotov
After line, "save it as small.py":
(-) redirect('https://www.google.com/search?q=%s' % request.args['q']) (+) return redirect('https://www.google.com/search?q=%s' % request.args['q'])
After line, "This is how the file looks in the end":
(-) assert redirect_status == 301, error (+) assert redirect_status == 302, error