funding: run gofmt -s on funding manager tests

This commit is contained in:
Olaoluwa Osuntokun
2018-03-13 17:08:53 -07:00
parent 0befe41384
commit d3cb451ead

View File

@@ -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.
}
}