From 9baebef1ccc53de5918520b247511453df386c68 Mon Sep 17 00:00:00 2001 From: Fedor Korotkiy Date: Thu, 2 Apr 2020 22:25:04 +0300 Subject: [PATCH] Fix linter --- pubsub/pubsub_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pubsub/pubsub_test.go b/pubsub/pubsub_test.go index 07a8811..88ef8cf 100644 --- a/pubsub/pubsub_test.go +++ b/pubsub/pubsub_test.go @@ -85,6 +85,8 @@ func TestPubSub_multipleSubjects(t *testing.T) { require.NoError(t, err) err = p.Publish("sub1", "blah-blah-1") + require.NoError(t, err) + err = p.Publish("sub2", "blah-blah-2") require.NoError(t, err)