Skip to content

Commit

Permalink
Fix image name (unrelated to this PR - just a nice-to-have to decreas…
Browse files Browse the repository at this point in the history
…e flakiness)

Signed-off-by: Eduardo Apolinario <[email protected]>
  • Loading branch information
eapolinario committed Nov 21, 2024
1 parent b3a1b0d commit 32c5896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/flytekit/unit/core/image_spec/test_image_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def test_build_existing_image_with_force_push():
image_spec = ImageSpec(name="hello", builder="test").force_push()

builder = Mock()
builder.build_image.return_value = "new_image_name"
builder.build_image.return_value = "fqn.xyz/new_image_name:v-test"
ImageBuildEngine.register("test", builder)

ImageBuildEngine.build(image_spec)
Expand Down

0 comments on commit 32c5896

Please sign in to comment.