Skip to content

Commit b9a4801

Browse files
committed
Call count for 'tag_image' was calculated incorrectly
1 parent b8b10bd commit b9a4801

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/cli/test_build_images.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def test_run(
152152

153153
# Check that 'tag_image' was called with the correct arguments
154154
if other_tags:
155-
assert mock_tag.call_count == len(other_tags)
155+
assert mock_tag.call_count == len(built_images)
156156
expected_tag_calls = (
157157
call(
158158
image_path=image,

0 commit comments

Comments
 (0)