From ccb4af321cd2276ac677233316f7a9623a12b08a Mon Sep 17 00:00:00 2001 From: mraniki Date: Thu, 7 Sep 2023 21:46:27 +0200 Subject: [PATCH] :fire: Remove test_contains_emoji function --- tests/test_unit.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/tests/test_unit.py b/tests/test_unit.py index d7481c4..daec050 100644 --- a/tests/test_unit.py +++ b/tests/test_unit.py @@ -212,16 +212,4 @@ async def test_mapping_order( assert type(result["timestamp"] is datetime) -@pytest.mark.asyncio -async def test_contains_no_emoji(fmo, order): - """check emoji""" - result = await fmo.contains_emoji(order) - assert result is False - - -@pytest.mark.asyncio -async def test_contains_emoji(fmo,order_with_emoji): - """check emoji""" - result = await fmo.contains_emoji(order_with_emoji) - assert result is True