diff options
-rw-r--r-- | pyagl/tests/test_audiomixer.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/pyagl/tests/test_audiomixer.py b/pyagl/tests/test_audiomixer.py index 6895fe3..000d9e9 100644 --- a/pyagl/tests/test_audiomixer.py +++ b/pyagl/tests/test_audiomixer.py @@ -50,7 +50,6 @@ async def test_list_controls(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.hwrequired @pytest.mark.audiomixer async def test_volume_verb(event_loop, service: AMS): msgid = await service.volume() @@ -60,7 +59,6 @@ async def test_volume_verb(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.hwrequired @pytest.mark.audiomixer async def test_set_volume0(event_loop, service: AMS): msgid = await service.volume(value=0) @@ -70,7 +68,6 @@ async def test_set_volume0(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.hwrequired @pytest.mark.audiomixer async def test_set_maxvolume(event_loop, service: AMS): msgid = await service.volume(value=1) @@ -80,7 +77,6 @@ async def test_set_maxvolume(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.hwrequired @pytest.mark.audiomixer async def test_get_mute(event_loop, service: AMS): msgid = await service.mute() @@ -90,7 +86,6 @@ async def test_get_mute(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.hwrequired @pytest.mark.audiomixer async def test_set_mute(event_loop, service: AMS): msgid = await service.mute(value=1) @@ -100,7 +95,6 @@ async def test_set_mute(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.hwrequired @pytest.mark.audiomixer async def test_set_unmute(event_loop, service: AMS): msgid = await service.mute(value=0) |