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
assertGoodView
url_name
The current signature of assertGoodView looks like this:
def assertGoodView(self, url_name, *args, **kwargs):
but the implementation never reverses the url_name param so a valid url name results in a 404 instead of a 400.
reverse
The text was updated successfully, but these errors were encountered:
OTOH, assertLoginRequired has this signature:
assertLoginRequired
def assertLoginRequired(self, url, *args, **kwargs):
but it forcibly calls reverse on URL, which fails if you pass the resolved url! 😕
Sorry, something went wrong.
No branches or pull requests
The current signature of
assertGoodView
looks like this:but the implementation never
reverse
s theurl_name
param so a valid url name results in a 404 instead of a 400.The text was updated successfully, but these errors were encountered: