1
0
mirror of https://github.com/actix/actix-website synced 2024-11-27 18:12:57 +01:00

Merge pull request #116 from dbrgn/patch-1

Fix typo in testing.md
This commit is contained in:
Roman Proskuryakov 2019-10-07 18:26:31 +03:00 committed by GitHub
commit f217edf478
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ to run the application with specific handlers in a real http server.
`TestRequest::get()`, `TestRequest::post()`, and `TestRequest::client()`
methods can be used to send requests to the test server.
To create a `Service` for testing, use the `test::init_serivce` method which accepts a
To create a `Service` for testing, use the `test::init_service` method which accepts a
regular `App` builder.
> Check the [api documentation][actixdocs] for more information.