Skip to content

Commit

Permalink
rpc: fix gofmt error
Browse files Browse the repository at this point in the history
Both gofmt 1.11.1 and 1.12.1 flagged this as a formatting error.
  • Loading branch information
pohly committed Apr 8, 2019
1 parent 52aae3f commit 9d6f5e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rpc/common_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ func TestGetPluginCapabilities(t *testing.T) {
defer os.RemoveAll(tmp)
identity := &fakeIdentityServer{
getPluginCapabilitiesResponse: test.output,
err: injectedErr,
err: injectedErr,
}
addr, stopServer := startServer(t, tmp, identity, nil)
defer func() {
Expand Down Expand Up @@ -366,7 +366,7 @@ func TestGetControllerCapabilities(t *testing.T) {
defer os.RemoveAll(tmp)
controller := &fakeControllerServer{
controllerGetCapabilitiesResponse: test.output,
err: injectedErr,
err: injectedErr,
}
addr, stopServer := startServer(t, tmp, nil, controller)
defer func() {
Expand Down

0 comments on commit 9d6f5e4

Please sign in to comment.