File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change 11#!/usr/bin/env python3
22"""Test client async."""
3- # pylint: disable=unused-argument
43import asyncio
54from dataclasses import dataclass
65from threading import Thread
@@ -132,14 +131,22 @@ async def run_client( # pylint: disable=unused-argument
132131
133132
134133@pytest .mark .parametrize ("test_comm, test_framer" , TEST_COMMS_FRAMER )
135- async def test_exp_async_simple (test_comm , test_framer ):
134+ async def test_exp_async_simple ( # pylint: disable=unused-argument
135+ mock_libs ,
136+ test_comm ,
137+ test_framer ,
138+ ):
136139 """Run async client and server."""
137140 _cheat .run_server (test_comm )
138141 _cheat .teardown ()
139142
140143
141144@pytest .mark .parametrize ("test_comm, test_framer" , TEST_COMMS_FRAMER )
142- def test_exp_sync_simple (test_comm , test_framer , mock_libs ):
145+ def test_exp_sync_simple ( # pylint: disable=unused-argument
146+ mock_libs ,
147+ test_comm ,
148+ test_framer ,
149+ ):
143150 """Run sync client and server."""
144151 args = Commandline
145152 args .comm = test_comm
You can’t perform that action at this time.
0 commit comments