diff options
author | Anton Evangelatov <anton.evangelatov@gmail.com> | 2018-11-19 21:57:22 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-19 21:57:22 +0800 |
commit | 6b6c4d1c2754f8dd70172ab58d7ee33cf9058c7d (patch) | |
tree | 894902776d7f1211c0095baab6dc1c29ac157c78 /cmd/swarm/fs_test.go | |
parent | 3333fe660f00b519a9d16398ca3801ab9313be16 (diff) | |
download | dexon-6b6c4d1c2754f8dd70172ab58d7ee33cf9058c7d.tar dexon-6b6c4d1c2754f8dd70172ab58d7ee33cf9058c7d.tar.gz dexon-6b6c4d1c2754f8dd70172ab58d7ee33cf9058c7d.tar.bz2 dexon-6b6c4d1c2754f8dd70172ab58d7ee33cf9058c7d.tar.lz dexon-6b6c4d1c2754f8dd70172ab58d7ee33cf9058c7d.tar.xz dexon-6b6c4d1c2754f8dd70172ab58d7ee33cf9058c7d.tar.zst dexon-6b6c4d1c2754f8dd70172ab58d7ee33cf9058c7d.zip |
cmd/swarm: speed up tests - use global cluster (#18129)
Diffstat (limited to 'cmd/swarm/fs_test.go')
-rw-r--r-- | cmd/swarm/fs_test.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cmd/swarm/fs_test.go b/cmd/swarm/fs_test.go index 3b722515e..ac4223b66 100644 --- a/cmd/swarm/fs_test.go +++ b/cmd/swarm/fs_test.go @@ -29,14 +29,8 @@ import ( "time" "github.com/ethereum/go-ethereum/log" - colorable "github.com/mattn/go-colorable" ) -func init() { - log.PrintOrigins(true) - log.Root().SetHandler(log.LvlFilterHandler(log.Lvl(*loglevel), log.StreamHandler(colorable.NewColorableStderr(), log.TerminalFormat(true)))) -} - type testFile struct { filePath string content string |