lsjson: update imports

This commit is contained in:
hiddenmarten 2025-01-22 22:29:51 +01:00
parent 30f8813d0d
commit cdea0cf8e3
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,6 @@ package operations_test
import (
"context"
"github.com/rclone/rclone/fstest/fstests"
"sort"
"testing"
"time"
@ -10,6 +9,7 @@ import (
"github.com/rclone/rclone/fs"
"github.com/rclone/rclone/fs/operations"
"github.com/rclone/rclone/fstest"
"github.com/rclone/rclone/fstest/fstests"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)

View File

@ -2,14 +2,14 @@ package serve
import (
"context"
"github.com/rclone/rclone/fs"
"github.com/rclone/rclone/fs/object"
"io"
"net/http"
"net/http/httptest"
"testing"
"time"
"github.com/rclone/rclone/fs"
"github.com/rclone/rclone/fs/object"
"github.com/rclone/rclone/fstest/mockobject"
"github.com/stretchr/testify/assert"
)