diff --git a/ra/ra_test.go b/ra/ra_test.go index d3aa69c19de..d9311fe9677 100644 --- a/ra/ra_test.go +++ b/ra/ra_test.go @@ -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",