From 177932e631a1f312bfd5550efb0da2c49f4176d2 Mon Sep 17 00:00:00 2001 From: "Ludovic Gasc (GMLudo)" Date: Sun, 26 Jul 2015 14:48:15 +0200 Subject: [PATCH] Fix a typo in code example --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index ab7cf325..2b732ae3 100644 --- a/README.rst +++ b/README.rst @@ -18,7 +18,7 @@ provides useful fixtures and markers to make testing easier. .. code-block:: python @pytest.mark.asyncio - def test_some_asyncio_code() + def test_some_asyncio_code(): res = yield from library.do_something() assert b'expected result' == res