diff --git a/docs/tutorials/asyncio-daemon.rst b/docs/tutorials/asyncio-daemon.rst
index 6ab2c3b1..ae265542 100644
--- a/docs/tutorials/asyncio-daemon.rst
+++ b/docs/tutorials/asyncio-daemon.rst
@@ -862,7 +862,7 @@ In next section we will add some tests.
Tests
-----
-It would be nice to add some tests. Let's do it.
+In this section we will add some tests.
We will use `pytest `_ and
`coverage `_.
@@ -992,14 +992,14 @@ You should see:
Name Stmts Miss Cover
----------------------------------------------------
monitoringdaemon/__init__.py 0 0 100%
- monitoringdaemon/__main__.py 9 9 0%
+ monitoringdaemon/__main__.py 12 12 0%
monitoringdaemon/containers.py 11 0 100%
- monitoringdaemon/dispatcher.py 43 5 88%
+ monitoringdaemon/dispatcher.py 44 5 89%
monitoringdaemon/http.py 6 3 50%
monitoringdaemon/monitors.py 23 1 96%
monitoringdaemon/tests.py 37 0 100%
----------------------------------------------------
- TOTAL 129 18 86%
+ TOTAL 133 21 84%
.. note::
diff --git a/examples/miniapps/asyncio-daemon/README.rst b/examples/miniapps/asyncio-daemon/README.rst
index 7616ff4e..0056db48 100644
--- a/examples/miniapps/asyncio-daemon/README.rst
+++ b/examples/miniapps/asyncio-daemon/README.rst
@@ -70,7 +70,7 @@ The output should be something like:
plugins: asyncio-0.14.0, cov-2.10.0
collected 2 items
- monitoringdaemon/tests.py .. [100%]
+ monitoringdaemon/tests.py .. [100%]
----------- coverage: platform linux, python 3.8.3-final-0 -----------
Name Stmts Miss Cover