From 58a2b434139ab7bdd13675a60da46ab1d03d6bb9 Mon Sep 17 00:00:00 2001 From: Cole Maclean Date: Tue, 11 Apr 2023 19:48:28 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9E=20bypass=20ruff=20check?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_connect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_connect.py b/tests/test_connect.py index c645464d..10fb532b 100644 --- a/tests/test_connect.py +++ b/tests/test_connect.py @@ -279,7 +279,7 @@ async def test_context_manager_exception_quits( ) -> None: with pytest.raises(ZeroDivisionError): async with smtp_client: - 1 / 0 + 1 / 0 # noqa assert received_commands[-1][0] == "QUIT"