From d3cb451ead722bb77f4d29f5a57066ccb32b92da Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Tue, 13 Mar 2018 17:08:53 -0700 Subject: [PATCH] funding: run gofmt -s on funding manager tests --- fundingmanager_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fundingmanager_test.go b/fundingmanager_test.go index 1c9df88e..8ed26302 100644 --- a/fundingmanager_test.go +++ b/fundingmanager_test.go @@ -549,7 +549,7 @@ func assertErrorNotSent(t *testing.T, msgChan chan lnwire.Message) { select { case <-msgChan: t.Fatalf("error sent unexpectedly") - case <- time.After(100 * time.Millisecond): + case <-time.After(100 * time.Millisecond): // Expected, return. } } @@ -579,7 +579,7 @@ func assertFundingMsgSent(t *testing.T, msgChan chan lnwire.Message, var ( sentMsg lnwire.Message - ok bool + ok bool ) switch msgType { case "AcceptChannel":