Skip to content

Commit

Permalink
Update ra/ra_test.go
Browse files Browse the repository at this point in the history
Co-authored-by: Aaron Gable <[email protected]>
  • Loading branch information
beautifulentropy and aarongable authored Jan 28, 2025
1 parent 05dd31f commit 4c05a84
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion ra/ra_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1675,9 +1675,16 @@ func TestNewOrder_ProfileSelectionAllowList(t *testing.T) {
expectErrContains string
}{
{
name: "Allow all account IDs",
name: "Allow all account IDs regardless of profile",
validationProfiles: nil,
expectErr: false,
}
{
name: "Allow all account IDs for this specific profile",
validationProfiles: map[string]*ValidationProfile{
"test": NewValidationProfile(nil),
},
expectErr: false,
},
{
name: "Deny all but account Id 1337",
Expand Down

0 comments on commit 4c05a84

Please sign in to comment.