p2p/simulations: fix gosimple nit (#15661)

This commit is contained in:
Felix Lange 2017-12-13 03:15:27 +01:00 committed by GitHub
parent f258a21a63
commit 3654aeaa4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -91,7 +91,7 @@ func TestMocker(t *testing.T) {
select {
case event := <-events:
//if the event is a node Up event only
if event.Node != nil && event.Node.Up == true {
if event.Node != nil && event.Node.Up {
//add the correspondent node ID to the map
nodemap[event.Node.Config.ID] = true
//this means all nodes got a nodeUp event, so we can continue the test