From 7be5a0fd79876919bd09f03ad7f3ebccba4e940e Mon Sep 17 00:00:00 2001 From: Airat Arifullin Date: Thu, 30 Mar 2023 15:35:34 +0300 Subject: [PATCH] [#189] node: Fix bug with sync/atomic package Signed-off-by: Airat Arifullin --- pkg/local_object_storage/engine/control_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/local_object_storage/engine/control_test.go b/pkg/local_object_storage/engine/control_test.go index 748abeec..2f9714ce 100644 --- a/pkg/local_object_storage/engine/control_test.go +++ b/pkg/local_object_storage/engine/control_test.go @@ -7,7 +7,6 @@ import ( "os" "path/filepath" "strconv" - "sync/atomic" "testing" "time" @@ -24,6 +23,7 @@ import ( cidtest "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/container/id/test" "github.com/stretchr/testify/require" "go.etcd.io/bbolt" + "go.uber.org/atomic" "go.uber.org/zap/zaptest" )