Skip to content

Commit

Permalink
fix assert check
Browse files Browse the repository at this point in the history
  • Loading branch information
Devtools committed Jan 8, 2025
1 parent be087d9 commit 38bb9d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/parallel/nstemplatetier_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ func TestTierTemplateRevision(t *testing.T) {
assert.NotNil(t, customTier.Spec.Parameters)
// we only expect the static parameter DEPLOYMENT_QUOTA to be copied from the tier to the TTR.
// the SPACE_NAME is not a parameter, but a dynamic variable which will be evaluated when provisioning a namespace for the user.
assert.Equal(t, obj.Spec.Parameters, customTier.Spec.Parameters)
assert.ElementsMatch(t, customTier.Spec.Parameters, obj.Spec.Parameters)
}
return true, nil
})
Expand Down

0 comments on commit 38bb9d6

Please sign in to comment.