Skip to content
Snippets Groups Projects

Channels impl

Merged Benjamin Wenger requested to merge channelsImpl into project/Channels
Compare and Show latest version
2 files
+ 15
9
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 15
0
package channels
import (
"os"
"testing"
jww "github.com/spf13/jwalterweatherman"
)
func TestMain(m *testing.M) {
// many tests trigger warn prints, set the out threshold so the warns
// can be seen in the logs
jww.SetStdoutThreshold(jww.LevelWarn)
os.Exit(m.Run())
}
Loading