diff options
author | Valery Piashchynski <[email protected]> | 2021-01-23 17:54:58 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-01-23 17:54:58 +0300 |
commit | 01a6fab935fc2e40d7b6c17ab75a20a74ca23d1d (patch) | |
tree | 59967433eb8220e60020011873623a7454941314 /tests/plugins/kv/memcached/plugin_test.go | |
parent | 29d6020a9e8a3713b22269ed946547c96c24d3da (diff) |
Stabilization PR
Diffstat (limited to 'tests/plugins/kv/memcached/plugin_test.go')
-rw-r--r-- | tests/plugins/kv/memcached/plugin_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/plugins/kv/memcached/plugin_test.go b/tests/plugins/kv/memcached/plugin_test.go index d4cb58bb..3878ef67 100644 --- a/tests/plugins/kv/memcached/plugin_test.go +++ b/tests/plugins/kv/memcached/plugin_test.go @@ -10,7 +10,7 @@ import ( "testing" "time" - "github.com/spiral/endure" + endure "github.com/spiral/endure/pkg/container" goridgeRpc "github.com/spiral/goridge/v3/pkg/rpc" "github.com/spiral/roadrunner/v2/plugins/config" httpPlugin "github.com/spiral/roadrunner/v2/plugins/http" @@ -23,7 +23,7 @@ import ( ) func TestMemcache(t *testing.T) { - cont, err := endure.NewContainer(nil, endure.SetLogLevel(endure.DebugLevel)) + cont, err := endure.NewContainer(nil, endure.SetLogLevel(endure.ErrorLevel)) assert.NoError(t, err) cfg := &config.Viper{ |