Skip to content

Commit 9d6f5e4

Browse files
committed
rpc: fix gofmt error
Both gofmt 1.11.1 and 1.12.1 flagged this as a formatting error.
1 parent 52aae3f commit 9d6f5e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rpc/common_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ func TestGetPluginCapabilities(t *testing.T) {
241241
defer os.RemoveAll(tmp)
242242
identity := &fakeIdentityServer{
243243
getPluginCapabilitiesResponse: test.output,
244-
err: injectedErr,
244+
err: injectedErr,
245245
}
246246
addr, stopServer := startServer(t, tmp, identity, nil)
247247
defer func() {
@@ -366,7 +366,7 @@ func TestGetControllerCapabilities(t *testing.T) {
366366
defer os.RemoveAll(tmp)
367367
controller := &fakeControllerServer{
368368
controllerGetCapabilitiesResponse: test.output,
369-
err: injectedErr,
369+
err: injectedErr,
370370
}
371371
addr, stopServer := startServer(t, tmp, nil, controller)
372372
defer func() {

0 commit comments

Comments
 (0)