From 70b4c8b5840ac2bc1a673e7bbf3698e09dbd71c4 Mon Sep 17 00:00:00 2001 From: Fabio Barone Date: Wed, 6 Mar 2019 12:24:37 -0500 Subject: [PATCH] swarm/network/stream/: fix linter errors --- swarm/network/stream/streamer_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swarm/network/stream/streamer_test.go b/swarm/network/stream/streamer_test.go index a82f888edb..83719af8a9 100644 --- a/swarm/network/stream/streamer_test.go +++ b/swarm/network/stream/streamer_test.go @@ -1340,7 +1340,7 @@ func TestGetSubscriptionsRPC(t *testing.T) { log.Debug("All node streams counted", "realCount", realCount) } emc := expectedMsgCount.count() - // after a subscription request, internally a live AND a history stream will be subscirbed, + // after a subscription request, internally a live AND a history stream will be subscribed, // thus the real count should be half of the actual request subscriptions sent if realCount/2 != emc { return fmt.Errorf("Real subscriptions and expected amount don't match; real: %d, expected: %d", realCount/2, emc)