From 3d9489eb0e2176b5bdf9915c86b771ecede5f864 Mon Sep 17 00:00:00 2001 From: profitroll Date: Fri, 26 Jul 2024 19:58:26 +0200 Subject: [PATCH] Fixed incorrect test declaration --- tests/test_config_sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_config_sync.py b/tests/test_config_sync.py index 522dcda..a13a494 100644 --- a/tests/test_config_sync.py +++ b/tests/test_config_sync.py @@ -59,7 +59,7 @@ def test_config_delete(key: str, path: List[str], location_config: Path): ("bot_lol", ["bot"]), ], ) -async def test_config_delete_missing(key: str, path: List[str], location_config: Path): +def test_config_delete_missing(key: str, path: List[str], location_config: Path): assert ( sync.config_delete(key, *path, missing_ok=True, config_file=location_config) is None