Skip to content

Commit

Permalink
Merge pull request #2039 from flouthoc/helper-test-cleanup
Browse files Browse the repository at this point in the history
helpers_test,cleanup: correct argument order
  • Loading branch information
vrothberg authored Jul 13, 2023
2 parents eedacf8 + b2b3735 commit 40225c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/imagedestination/impl/helpers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ func TestBlobMatchesRequiredCompression(t *testing.T) {

for _, c := range cases {
opts = private.TryReusingBlobOptions{RequiredCompression: c.requiredCompression}
assert.Equal(t, BlobMatchesRequiredCompression(opts, c.candidateCompression), c.result)
assert.Equal(t, c.result, BlobMatchesRequiredCompression(opts, c.candidateCompression))
}
}

0 comments on commit 40225c8

Please sign in to comment.