From 1a2370aa61b594262c8aae419e005fbd44917bc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Augrid?= Date: Sun, 28 Jul 2024 18:08:47 +0200 Subject: [PATCH] flake8 comment fix --- .../components/buildx/test_buildx_cli_wrapper.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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():