diff options
author | Elad <theman@elad.im> | 2019-01-25 00:23:34 +0800 |
---|---|---|
committer | Rafael Matias <rafael@skyle.net> | 2019-02-19 19:56:31 +0800 |
commit | 2695aa9e0d09e58817d2560ecdbd7b5b67f8f1b0 (patch) | |
tree | 597df951ae6ea5389bdb26b7199c9a299a155acb /p2p/testing/protocoltester.go | |
parent | e247dcc141a5d1c9129b987a5f164e9df29be951 (diff) | |
download | dexon-2695aa9e0d09e58817d2560ecdbd7b5b67f8f1b0.tar dexon-2695aa9e0d09e58817d2560ecdbd7b5b67f8f1b0.tar.gz dexon-2695aa9e0d09e58817d2560ecdbd7b5b67f8f1b0.tar.bz2 dexon-2695aa9e0d09e58817d2560ecdbd7b5b67f8f1b0.tar.lz dexon-2695aa9e0d09e58817d2560ecdbd7b5b67f8f1b0.tar.xz dexon-2695aa9e0d09e58817d2560ecdbd7b5b67f8f1b0.tar.zst dexon-2695aa9e0d09e58817d2560ecdbd7b5b67f8f1b0.zip |
p2p/testing, swarm: remove unused testing.T in protocol tester (#18500)
(cherry picked from commit 2abeb35d5425d72c2f7fdfe4209f7a94fac52a8e)
Diffstat (limited to 'p2p/testing/protocoltester.go')
-rw-r--r-- | p2p/testing/protocoltester.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/p2p/testing/protocoltester.go b/p2p/testing/protocoltester.go index afc03b009..cbd8ce6fe 100644 --- a/p2p/testing/protocoltester.go +++ b/p2p/testing/protocoltester.go @@ -30,7 +30,6 @@ import ( "io/ioutil" "strings" "sync" - "testing" "github.com/ethereum/go-ethereum/log" "github.com/ethereum/go-ethereum/node" @@ -52,7 +51,7 @@ type ProtocolTester struct { // NewProtocolTester constructs a new ProtocolTester // it takes as argument the pivot node id, the number of dummy peers and the // protocol run function called on a peer connection by the p2p server -func NewProtocolTester(t *testing.T, id enode.ID, n int, run func(*p2p.Peer, p2p.MsgReadWriter) error) *ProtocolTester { +func NewProtocolTester(id enode.ID, n int, run func(*p2p.Peer, p2p.MsgReadWriter) error) *ProtocolTester { services := adapters.Services{ "test": func(ctx *adapters.ServiceContext) (node.Service, error) { return &testNode{run}, nil |