Fixed incorrect test declaration

This commit is contained in:
Profitroll 2024-07-26 19:58:26 +02:00
parent b00e188859
commit 3d9489eb0e
Signed by: profitroll
GPG Key ID: FA35CAB49DACD3B2

View File

@ -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