The current signature of `assertGoodView` looks like this: ```python def assertGoodView(self, url_name, *args, **kwargs): ``` but the implementation never `reverse`s the `url_name` param so a valid url name results in a 404 instead of a 400.
The current signature of
assertGoodViewlooks like this:but the implementation never
reverses theurl_nameparam so a valid url name results in a 404 instead of a 400.