Skip to content
Snippets Groups Projects
Commit f80ceb34 authored by Jono Wenger's avatar Jono Wenger
Browse files

Fix import sort

parent 73103a5e
No related branches found
No related tags found
1 merge request!121Fixes
This commit is part of merge request !121. Comments created here will be created in the context of that merge request.
...@@ -14,22 +14,21 @@ import ( ...@@ -14,22 +14,21 @@ import (
"encoding/json" "encoding/json"
"errors" "errors"
"fmt" "fmt"
"github.com/stretchr/testify/require"
"os" "os"
"strconv" "strconv"
"testing" "testing"
"time" "time"
cft "gitlab.com/elixxir/client/v4/channelsFileTransfer"
"gitlab.com/elixxir/crypto/fileTransfer"
"github.com/hack-pad/go-indexeddb/idb" "github.com/hack-pad/go-indexeddb/idb"
jww "github.com/spf13/jwalterweatherman" jww "github.com/spf13/jwalterweatherman"
"github.com/stretchr/testify/require"
"gitlab.com/elixxir/client/v4/channels" "gitlab.com/elixxir/client/v4/channels"
cft "gitlab.com/elixxir/client/v4/channelsFileTransfer"
"gitlab.com/elixxir/client/v4/cmix/rounds" "gitlab.com/elixxir/client/v4/cmix/rounds"
cryptoBroadcast "gitlab.com/elixxir/crypto/broadcast" cryptoBroadcast "gitlab.com/elixxir/crypto/broadcast"
cryptoChannel "gitlab.com/elixxir/crypto/channel" cryptoChannel "gitlab.com/elixxir/crypto/channel"
"gitlab.com/elixxir/crypto/fileTransfer"
"gitlab.com/elixxir/crypto/message" "gitlab.com/elixxir/crypto/message"
"gitlab.com/elixxir/wasm-utils/storage" "gitlab.com/elixxir/wasm-utils/storage"
"gitlab.com/elixxir/xxdk-wasm/indexedDb/impl" "gitlab.com/elixxir/xxdk-wasm/indexedDb/impl"
...@@ -44,6 +43,7 @@ func TestMain(m *testing.M) { ...@@ -44,6 +43,7 @@ func TestMain(m *testing.M) {
} }
type dummyCbs struct{} type dummyCbs struct{}
func (c *dummyCbs) EventUpdate(int64, []byte) {} func (c *dummyCbs) EventUpdate(int64, []byte) {}
// Happy path test for receiving, updating, getting, and deleting a File. // Happy path test for receiving, updating, getting, and deleting a File.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment