Skip to content

Commit

Permalink
fix: Fix Test (wrong order of arguments) (#2780)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-asawicki authored May 7, 2024
1 parent 7b1c67e commit 02f467e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/sdk/testint/masking_policy_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func TestInt_MaskingPoliciesShow(t *testing.T) {
t.Run("without show options", func(t *testing.T) {
maskingPolicies, err := client.MaskingPolicies.Show(ctx, nil)
require.NoError(t, err)
assert.GreaterOrEqual(t, 2, len(maskingPolicies))
assert.GreaterOrEqual(t, len(maskingPolicies), 2)
})

t.Run("with show options", func(t *testing.T) {
Expand Down

0 comments on commit 02f467e

Please sign in to comment.