Skip to content

Commit

Permalink
Fix broken references
Browse files Browse the repository at this point in the history
  • Loading branch information
l1storez committed May 25, 2021
1 parent 4f48e3f commit df95bf2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/testing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ requests to this server.

:class:`~aiohttp.test_utils.TestServer` runs :class:`aiohttp.web.Application`
based server, :class:`~aiohttp.test_utils.RawTestServer` starts
:class:`aiohttp.web.WebServer` low level server.
:class:`aiohttp.web.Server` low level server.

For performing HTTP requests to these servers you have to create a
test client: :class:`~aiohttp.test_utils.TestClient` instance.
Expand Down Expand Up @@ -338,7 +338,7 @@ functionality, the AioHTTPTestCase is provided::

.. attribute:: app

The application returned by :meth:`get_app`
The application returned by :meth:`~aiohttp.test_utils.AioHTTPTestCase.get_application`
(:class:`aiohttp.web.Application` instance).

.. comethod:: get_client()
Expand Down Expand Up @@ -544,7 +544,7 @@ conditions that hard to reproduce on real server::
:type writer: aiohttp.StreamWriter

:param transport: asyncio transport instance
:type transport: asyncio.transports.Transport
:type transport: asyncio.Transport

:param payload: raw payload reader object
:type payload: aiohttp.StreamReader
Expand Down Expand Up @@ -623,8 +623,8 @@ Test server
Runs given :class:`aiohttp.web.Application` instance on random TCP port.

After creation the server is not started yet, use
:meth:`~aiohttp.test_utils.TestServer.start_server` for actual server
starting and :meth:`~aiohttp.test_utils.TestServer.close` for
:meth:`~aiohttp.test_utils.BaseTestServer.start_server` for actual server
starting and :meth:`~aiohttp.test_utils.BaseTestServer.close` for
stopping/cleanup.

Test server usually works in conjunction with
Expand Down Expand Up @@ -660,7 +660,7 @@ for accessing to the server.

.. attribute:: handler

:class:`aiohttp.web.WebServer` used for HTTP requests serving.
:class:`aiohttp.web.Server` used for HTTP requests serving.

.. attribute:: server

Expand Down

0 comments on commit df95bf2

Please sign in to comment.