Skip to content

Commit c83527a

Browse files
committed
Fix map literal alignment in the status test
Renaming the sample instances shortened the keys, so gofmt wanted the values realigned. Caught by the linter, not by the tests. Assisted-by: Claude:claude-opus-5
1 parent ed45be8 commit c83527a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

comp/remote-config/rcstatus/impl/status_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ func TestStatusOutputAdditionalInstances(t *testing.T) {
8585
instances := &expvar.Map{}
8686
instances.Init()
8787
for name, authorized := range map[string]string{
88-
"Remote Config": "true",
89-
"autoscaling": "true",
90-
"broken": "false",
88+
"Remote Config": "true",
89+
"autoscaling": "true",
90+
"broken": "false",
9191
} {
9292
entry := &expvar.Map{}
9393
entry.Init()

0 commit comments

Comments
 (0)