Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions roles/roles_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func TestGoldenList(t *testing.T) {
autogold.Expect([]Role{
Role("dotcom::site_admin"), Role("enterprise_portal::customer_admin"),
Role("enterprise_portal::service_admin"),
Role("releaseoperations::release_admin"),
Role("release_operations::release_admin"),
Role("ssc::admin"),
Role("workspaces::service_admin"),
}).Equal(t, got)
Expand Down Expand Up @@ -87,7 +87,7 @@ func TestRolesByResourceType(t *testing.T) {
resource: Service,
expected: autogold.Expect([]Role{
Role("dotcom::site_admin"), Role("enterprise_portal::service_admin"),
Role("releaseoperations::release_admin"),
Role("release_operations::release_admin"),
Role("ssc::admin"),
Role("workspaces::service_admin"),
}),
Expand Down
2 changes: 1 addition & 1 deletion services/services.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const (
SSC Service = "ssc"
Analytics Service = "analytics"
CloudAPI Service = "cloud_api"
ReleaseOperations Service = "releaseoperations"
ReleaseOperations Service = "release_operations"
)

var serviceNames = map[Service]string{
Expand Down
Loading