diff options
author | Valery Piashchynski <[email protected]> | 2023-08-18 19:27:24 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-08-18 19:27:24 +0200 |
commit | 9f15de1036fd084eb5ec74e22cfabf82ab07985b (patch) | |
tree | b626842124861b7c0822acabf80890741b8522b5 /container | |
parent | 3a47d0b77d0c439c44d0b41256c6d93de7d91a4b (diff) | |
parent | 180967606934be4641720a4b618cd9414e72e853 (diff) |
[#1684]: pre-release: `v2023.3.0-beta.1`v2023.3.0-beta.1
Diffstat (limited to 'container')
-rw-r--r-- | container/config.go | 2 | ||||
-rw-r--r-- | container/config_test.go | 2 | ||||
-rw-r--r-- | container/container_test.go | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/container/config.go b/container/config.go index fbb34194..f1426cd6 100644 --- a/container/config.go +++ b/container/config.go @@ -2,10 +2,10 @@ package container import ( "fmt" + "log/slog" "time" "github.com/spf13/viper" - "golang.org/x/exp/slog" ) // Config defines endure container configuration. diff --git a/container/config_test.go b/container/config_test.go index da3ca74a..41e128aa 100644 --- a/container/config_test.go +++ b/container/config_test.go @@ -1,13 +1,13 @@ package container_test import ( + "log/slog" "testing" "time" "github.com/roadrunner-server/config/v4" "github.com/roadrunner-server/roadrunner/v2023/container" "github.com/stretchr/testify/assert" - "golang.org/x/exp/slog" ) func TestNewConfig_SuccessfulReading(t *testing.T) { diff --git a/container/container_test.go b/container/container_test.go index a1d68e6b..49780a31 100644 --- a/container/container_test.go +++ b/container/container_test.go @@ -1,12 +1,12 @@ package container_test import ( + "log/slog" "testing" "time" "github.com/roadrunner-server/endure/v2" "github.com/stretchr/testify/assert" - "golang.org/x/exp/slog" ) func TestNewContainer(t *testing.T) { // there is no legal way to test container options |