diff --git a/django-stubs/test/testcases.pyi b/django-stubs/test/testcases.pyi index 40b0199..efffc09 100644 --- a/django-stubs/test/testcases.pyi +++ b/django-stubs/test/testcases.pyi @@ -82,6 +82,12 @@ class SimpleTestCase(unittest.TestCase): msg_prefix: str = ..., fetch_redirect_response: bool = ..., ) -> None: ... + def assertURLEqual( + self, + url1: str | Any, # Any for reverse_lazy() support + url2: str | Any, + msg_prefix: str = ..., + ) -> None: ... def assertContains( self, response: HttpResponseBase,