From 02f143dd4efc24abdd54837e2e87af453e0e2d44 Mon Sep 17 00:00:00 2001 From: Andrew Svetlov Date: Mon, 1 Nov 2021 23:00:07 +0200 Subject: [PATCH] Add tests --- tests/test___all__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test___all__.py b/tests/test___all__.py index 390f1407147..d5e6445f9c8 100644 --- a/tests/test___all__.py +++ b/tests/test___all__.py @@ -7,8 +7,8 @@ def test___all__(pytester: Any) -> None: """ pytester.makepyfile( test_a=""" - from aiohttp import * - """ + from aiohttp import * + """ ) result = pytester.runpytest("-vv") result.assert_outcomes(passed=0, errors=0) @@ -17,8 +17,8 @@ def test___all__(pytester: Any) -> None: def test_web___all__(pytester: Any) -> None: pytester.makepyfile( test_b=""" - from aiohttp.web import * - """ + from aiohttp.web import * + """ ) result = pytester.runpytest("-vv") result.assert_outcomes(passed=0, errors=0)