Skip to content

Commit

Permalink
making mypy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkae committed Sep 18, 2023
1 parent 41f0640 commit dd3540c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mir-ci/mir_ci/test_screencopy_bandwidth.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class TestScreencopyBandwidth:
apps.qterminal('--execute', f'python3 -m asciinema play {ASCIINEMA_CAST}', pip_pkgs=('asciinema',), id='asciinema', extra=15),
apps.snap('mir-kiosk-neverputt', extra=False)
])
async def test_active_app(self, record_property, server, app: apps.Dependency) -> None:
async def test_active_app(self, record_property, server, app) -> None:
server = DisplayServer(server, add_extensions=ScreencopyTracker.required_extensions)
tracker = ScreencopyTracker(server.display_name)
async with server as s, tracker, s.program(app.command[0]) as p:
Expand All @@ -53,7 +53,7 @@ async def test_compositor_alone(self, record_property, server) -> None:
apps.pluma(),
apps.snap('mir-kiosk-kodi'),
])
async def test_inactive_app(self, record_property, server, app: apps.Dependency) -> None:
async def test_inactive_app(self, record_property, server, app) -> None:
server = DisplayServer(server[0], add_extensions=ScreencopyTracker.required_extensions)
tracker = ScreencopyTracker(server.display_name)
async with server as s, tracker, s.program(app.command, app_type=app.app_type):
Expand All @@ -66,7 +66,7 @@ async def test_inactive_app(self, record_property, server, app: apps.Dependency)
apps.mir_test_tools(),
apps.mir_demo_server(),
])
async def test_app_dragged_around(self, record_property, local_server: apps.Dependency) -> None:
async def test_app_dragged_around(self, record_property, local_server) -> None:
async def pause():
await asyncio.sleep(0.2)
extensions = ScreencopyTracker.required_extensions + VirtualPointer.required_extensions
Expand Down

0 comments on commit dd3540c

Please sign in to comment.