From 5e597b566eaa0cee5714324b44d58307bfef5de6 Mon Sep 17 00:00:00 2001 From: Tim Camise Date: Thu, 21 Sep 2023 13:17:52 -0700 Subject: [PATCH] Fix formatting --- .../tests/unit/test_http_commands.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/demos/python/sdk_wireless_camera_control/tests/unit/test_http_commands.py b/demos/python/sdk_wireless_camera_control/tests/unit/test_http_commands.py index a51c12ee..c1a52169 100644 --- a/demos/python/sdk_wireless_camera_control/tests/unit/test_http_commands.py +++ b/demos/python/sdk_wireless_camera_control/tests/unit/test_http_commands.py @@ -7,8 +7,8 @@ import pytest -from open_gopro.gopro_base import GoProBase from open_gopro import Params +from open_gopro.gopro_base import GoProBase camera_file = "100GOPRO/XXX.mp4" @@ -18,11 +18,13 @@ async def test_get_with_no_params(mock_wifi_communicator: GoProBase): response = await mock_wifi_communicator.http_command.get_media_list() assert response.url == "gopro/media/list" + @pytest.mark.asyncio async def test_set_setting(mock_wifi_communicator: GoProBase): response = await mock_wifi_communicator.http_setting.fps.set(Params.FPS.FPS_100) assert response.url == "gopro/camera/setting?setting=3&option=2" + @pytest.mark.asyncio async def test_get_with_params(mock_wifi_communicator: GoProBase): zoom = 99