diff options
author | Qiu Tingting <qiutt@fujitsu.com> | 2021-08-31 15:28:18 +0800 |
---|---|---|
committer | Qiu Tingting <qiutt@fujitsu.com> | 2021-08-31 15:28:18 +0800 |
commit | af4988e6cb8c59dd3917a1d5b5cb9b76b7ac2241 (patch) | |
tree | 2e050f60314366bcaf4e4d1dd46477b24b491cb6 | |
parent | aa33bf76e083def4b02a196f07d618dc591d1225 (diff) |
Delete redundant mark for each test cases in audiomixer
Because there is a definition of pytest.mark.audiomixer at the top,
this mark is not needed for each test case.
Bug-AGL: SPEC-4061
Signed-off-by: Qiu Tingting <qiutt@fujitsu.com>
Change-Id: I362f6c64ca9c13505ccb365d2e4a228f8821bfee
-rw-r--r-- | pyagl/tests/test_audiomixer.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/pyagl/tests/test_audiomixer.py b/pyagl/tests/test_audiomixer.py index 2349486..9af734b 100644 --- a/pyagl/tests/test_audiomixer.py +++ b/pyagl/tests/test_audiomixer.py @@ -49,7 +49,6 @@ async def test_list_controls(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.audiomixer async def test_volume_verb(event_loop, service: AMS): msgid = await service.volume() resp = await service.afbresponse() @@ -58,7 +57,6 @@ async def test_volume_verb(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.audiomixer async def test_set_volume0(event_loop, service: AMS): msgid = await service.volume(value=0) resp = await service.afbresponse() @@ -67,7 +65,6 @@ async def test_set_volume0(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.audiomixer async def test_set_maxvolume(event_loop, service: AMS): msgid = await service.volume(value=1) resp = await service.afbresponse() @@ -76,7 +73,6 @@ async def test_set_maxvolume(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.audiomixer async def test_get_mute(event_loop, service: AMS): msgid = await service.mute() resp = await service.afbresponse() @@ -85,7 +81,6 @@ async def test_get_mute(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.audiomixer async def test_set_mute(event_loop, service: AMS): msgid = await service.mute(value=1) resp = await service.afbresponse() @@ -94,7 +89,6 @@ async def test_set_mute(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.audiomixer async def test_set_unmute(event_loop, service: AMS): msgid = await service.mute(value=0) resp = await service.afbresponse() @@ -103,7 +97,6 @@ async def test_set_unmute(event_loop, service: AMS): assert resp.status == 'success' -@pytest.mark.audiomixer async def test_subscribe(event_loop,service: AMS): msgid = await service.subscribe('volume_changed') resp = await service.afbresponse() @@ -112,7 +105,6 @@ async def test_subscribe(event_loop,service: AMS): assert resp.status == 'success' -@pytest.mark.audiomixer async def test_unsubscribe(event_loop,service: AMS): msgid = await service.unsubscribe('volume_changed') resp = await service.afbresponse() |