From f46bbbdb6000d20f0db2603de4f87f00e0fe6e43 Mon Sep 17 00:00:00 2001 From: Han Wang Date: Sat, 20 Apr 2024 21:33:35 +0100 Subject: Revert back to time.sleep Signed-off-by: Han Wang --- test/plugins/test_player.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/plugins/test_player.py b/test/plugins/test_player.py index f10b616bc..eb38e9afc 100644 --- a/test/plugins/test_player.py +++ b/test/plugins/test_player.py @@ -15,7 +15,6 @@ """Tests for BPD's implementation of the MPD protocol. """ -import asyncio import importlib.util import multiprocessing as mp import os @@ -23,6 +22,7 @@ import socket import sys import tempfile import threading +import time import unittest from contextlib import contextmanager @@ -549,7 +549,7 @@ class BPDQueryTest(BPDTestHelper): # Manually send a command without reading a response. request = client.serialise_command("idle") client.sock.sendall(request) - asyncio.sleep(0.01) + time.sleep(0.01) response = client.send_command("noidle") self._assert_ok(response) -- cgit v1.2.3