We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e19fbd commit b818de6Copy full SHA for b818de6
tests/python_on_whales/components/buildx/imagetools/test_imagetools_cli_wrapper.py
@@ -1,5 +1,3 @@
1
-from unittest.mock import patch
2
-
3
import pytest
4
5
from python_on_whales import docker
@@ -96,6 +94,8 @@ def test_imagetools_create_with_annotations_command_construction():
96
94
)
97
95
98
assert len(manifest.annotations) == 2
99
- assert manifest.annotations["org.opencontainers.image.source"] == "https://github.com/user/repo"
+ assert (
+ manifest.annotations["org.opencontainers.image.source"]
+ == "https://github.com/user/repo"
100
+ )
101
assert manifest.annotations["org.opencontainers.image.description"] == "Test image"
0 commit comments