Skip to content

Commit

Permalink
fix(agent): fix unit test in separate function
Browse files Browse the repository at this point in the history
  • Loading branch information
nandor-magyar committed Sep 26, 2024
1 parent 5d63c82 commit 17064f3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions golang/internal/helper/image/image_unit_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ func TestExpandImageNameWithTag(t *testing.T) {
{
name: "capitalsHandled",
desc: "with capitals in the image parsing works smoothly",
image: "my-reg.com/Library/nginx:my-tag",
tag: "tag-4",
expImage: "my-reg.com/library/nginx:tag-4",
image: "my-reg.com/library/nginx",
tag: "Tag-4",
expImage: "my-reg.com/library/nginx:Tag-4",
},
}
for _, tC := range testCases {
Expand Down

0 comments on commit 17064f3

Please sign in to comment.