From f80ceb341cc66f80c80d0253c8423db8216a7ca8 Mon Sep 17 00:00:00 2001 From: Jono Wenger <jono@elixxir.io> Date: Wed, 24 May 2023 10:13:36 -0700 Subject: [PATCH] Fix import sort --- indexedDb/impl/channels/implementation_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/indexedDb/impl/channels/implementation_test.go b/indexedDb/impl/channels/implementation_test.go index dba92210..f596065d 100644 --- a/indexedDb/impl/channels/implementation_test.go +++ b/indexedDb/impl/channels/implementation_test.go @@ -14,22 +14,21 @@ import ( "encoding/json" "errors" "fmt" - "github.com/stretchr/testify/require" "os" "strconv" "testing" "time" - cft "gitlab.com/elixxir/client/v4/channelsFileTransfer" - "gitlab.com/elixxir/crypto/fileTransfer" - "github.com/hack-pad/go-indexeddb/idb" jww "github.com/spf13/jwalterweatherman" + "github.com/stretchr/testify/require" "gitlab.com/elixxir/client/v4/channels" + cft "gitlab.com/elixxir/client/v4/channelsFileTransfer" "gitlab.com/elixxir/client/v4/cmix/rounds" cryptoBroadcast "gitlab.com/elixxir/crypto/broadcast" cryptoChannel "gitlab.com/elixxir/crypto/channel" + "gitlab.com/elixxir/crypto/fileTransfer" "gitlab.com/elixxir/crypto/message" "gitlab.com/elixxir/wasm-utils/storage" "gitlab.com/elixxir/xxdk-wasm/indexedDb/impl" @@ -44,6 +43,7 @@ func TestMain(m *testing.M) { } type dummyCbs struct{} + func (c *dummyCbs) EventUpdate(int64, []byte) {} // Happy path test for receiving, updating, getting, and deleting a File. -- GitLab