Commit 4499dc81 authored by Tim Graham's avatar Tim Graham
Browse files

[1.6.x] Fixed #21304 -- Typo in docs/topics/testing/advanced.txt

Thanks joao at silvaneves.org for the report.

Backport of 9704c49d from master
parent b987fb18
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ The following is a simple unit test using the request factory::
            # Every test needs access to the request factory.
            self.factory = RequestFactory()
            self.user = User.objects.create_user(
                first_name='jacob', email='jacob@…', password='top_secret')
                username='jacob', email='jacob@…', password='top_secret')

        def test_details(self):
            # Create an instance of a GET request.