Skip to content

Commit

Permalink
chore: Fix get-previous-release test case (#20863)
Browse files Browse the repository at this point in the history
Signed-off-by: Leonardo Luz Almeida <[email protected]>
  • Loading branch information
leoluz authored Nov 20, 2024
1 parent 6cf363c commit fc9b33b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ func TestFindPreviousTagRules(t *testing.T) {
assert.Error(t, err)
} else {
assert.NoError(t, err)
assert.Equalf(t, test.expected, test.expected, "for proposed tag %s expected %s but got %s", test.proposedTag, test.expected, result)
assert.Equalf(t, test.expected, result, "for proposed tag %s expected %s but got %s", test.proposedTag, test.expected, result)
}
})
}
Expand Down

0 comments on commit fc9b33b

Please sign in to comment.