We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While working on #183 and wondering why some tests take a long time, I noticed a bug in TestMultipleChoicesRedirects - the test accesses /multiple_choices_redirect/ but the SimpleApp server only defines /multiple_choices/ - so in this case, it falls back to the default 200 response in __call__. This may be hiding a real bug, I didn't really investigate further.
TestMultipleChoicesRedirects
/multiple_choices_redirect/
SimpleApp
/multiple_choices/
__call__
Maybe it would be a better idea to return a 404 or 500 error in cases of unknown URLs
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While working on #183 and wondering why some tests take a long time, I noticed a bug in
TestMultipleChoicesRedirects
- the test accesses/multiple_choices_redirect/
but theSimpleApp
server only defines/multiple_choices/
- so in this case, it falls back to the default 200 response in__call__
. This may be hiding a real bug, I didn't really investigate further.Maybe it would be a better idea to return a 404 or 500 error in cases of unknown URLs
The text was updated successfully, but these errors were encountered: