aboutsummaryrefslogtreecommitdiffstats
path: root/node/node_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'node/node_test.go')
-rw-r--r--node/node_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/node/node_test.go b/node/node_test.go
index 2880efa61..e51900bd1 100644
--- a/node/node_test.go
+++ b/node/node_test.go
@@ -507,8 +507,8 @@ func TestAPIGather(t *testing.T) {
}
// Register a batch of services with some configured APIs
calls := make(chan string, 1)
- makeAPI := func(result string) *OneMethodApi {
- return &OneMethodApi{fun: func() { calls <- result }}
+ makeAPI := func(result string) *OneMethodAPI {
+ return &OneMethodAPI{fun: func() { calls <- result }}
}
services := map[string]struct {
APIs []rpc.API