From 877e4dee8292af396b10a108f97e3db120def203 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Ko=CC=88lling?= Date: Tue, 20 Jun 2023 23:49:50 +0200 Subject: [PATCH] requests should contain CIDs --- test/test_async.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/test_async.py b/test/test_async.py index c5f4ed0..b54a1b1 100644 --- a/test/test_async.py +++ b/test/test_async.py @@ -85,8 +85,6 @@ async def test_exists(event_loop): assert res is True res = await fs._exists(TEST_ROOT + "/missing") assert res is False - res = await fs._exists("/missing") - assert res is False @pytest.mark.asyncio