diff --git a/tests/python_on_whales/components/buildx/test_buildx_cli_wrapper.py b/tests/python_on_whales/components/buildx/test_buildx_cli_wrapper.py index 935ef3d2..a269474d 100644 --- a/tests/python_on_whales/components/buildx/test_buildx_cli_wrapper.py +++ b/tests/python_on_whales/components/buildx/test_buildx_cli_wrapper.py @@ -371,7 +371,8 @@ def test_buildx_inspect_bootstrap(): with my_builder: docker.buildx.inspect(my_builder.name, bootstrap=True) assert my_builder.status == 'running' - assert my_builder.platforms #Must contain at least the host native platform + #Must contain at least the host native platform + assert my_builder.platforms def test_builder_name(): @@ -487,7 +488,8 @@ def test_buildx_create_bootstrap(): my_builder = docker.buildx.create(bootstrap=True) with my_builder: assert my_builder.status == 'running' - assert my_builder.platforms #Must contain at least the host native platform + #Must contain at least the host native platform + assert my_builder.platforms def test_buildx_create_remove_with_platforms():