From e07f71d51fef26571a50385eb4eaf69675302fa6 Mon Sep 17 00:00:00 2001 From: mraniki <8766259+mraniki@users.noreply.github.com> Date: Sun, 7 Jul 2024 12:39:56 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=85=20Unit=20Test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_unit.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/test_unit.py b/tests/test_unit.py index 7c78ef51..285477d4 100644 --- a/tests/test_unit.py +++ b/tests/test_unit.py @@ -156,14 +156,3 @@ async def test_standard_get_order(fmo, order, result_order): assert result["comment"] == result_order["comment"] assert type(result["timestamp"] is datetime) - -# @pytest.mark.asyncio -# async def test_create_client_exception(fmo, caplog): -# result = fmo.create_client() -# assert result is not None -# assert any( -# record.message -# == "No Client were created. Check your settings or disable the module." -# for record in caplog.records -# if record.levelname == "WARNING" -# )