]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏️ Fix link in `docs/en/docs/advanced/async-tests.md` (#10960)
authorNils Lindemann <nilslindemann@tutanota.com>
Sat, 13 Jan 2024 12:07:15 +0000 (13:07 +0100)
committerGitHub <noreply@github.com>
Sat, 13 Jan 2024 12:07:15 +0000 (07:07 -0500)
docs/en/docs/advanced/async-tests.md

index c79822d63e19b4d95222caf50da0034f11123e01..f9c82e6ab4602596a3b78a1e582b7e36146b7afb 100644 (file)
@@ -85,7 +85,7 @@ response = client.get('/')
     Note that we're using async/await with the new `AsyncClient` - the request is asynchronous.
 
 !!! warning
-    If your application relies on lifespan events, the `AsyncClient` won't trigger these events. To ensure they are triggered, use `LifespanManager` from <a href="florimondmanca/asgi-lifespan" class="external-link" target="_blank">https://github.com/florimondmanca/asgi-lifespan#usage</a>.
+    If your application relies on lifespan events, the `AsyncClient` won't trigger these events. To ensure they are triggered, use `LifespanManager` from <a href="https://github.com/florimondmanca/asgi-lifespan#usage" class="external-link" target="_blank">florimondmanca/asgi-lifespan</a>.
 
 ## Other Asynchronous Function Calls