diff --git a/internal/backend/test/tests.go b/internal/backend/test/tests.go index 7e9f7f5ab..6baa44f0e 100644 --- a/internal/backend/test/tests.go +++ b/internal/backend/test/tests.go @@ -412,13 +412,11 @@ func (s *Suite) TestListCancel(t *testing.T) { }) t.Run("Timeout", func(t *testing.T) { - ctx, cancel := context.WithCancel(context.TODO()) - defer cancel() - // rather large timeout, let's try to get at least one item timeout := time.Second - ctxTimeout, _ := context.WithTimeout(ctx, timeout) + ctxTimeout, cancel := context.WithTimeout(context.TODO(), timeout) + defer cancel() i := 0 // pass in a context with a timeout diff --git a/internal/crypto/crypto_int_test.go b/internal/crypto/crypto_int_test.go index 769f34d1e..a370ef32e 100644 --- a/internal/crypto/crypto_int_test.go +++ b/internal/crypto/crypto_int_test.go @@ -164,7 +164,7 @@ func TestCrypto(t *testing.T) { } } -func TestNonceVadlid(t *testing.T) { +func TestNonceValid(t *testing.T) { nonce := make([]byte, ivSize) if validNonce(nonce) { diff --git a/internal/fuse/dir.go b/internal/fuse/dir.go index bff1b2308..4a6b0f40f 100644 --- a/internal/fuse/dir.go +++ b/internal/fuse/dir.go @@ -109,7 +109,7 @@ func newDirFromSnapshot(ctx context.Context, root *Root, inode uint64, snapshot } func (d *dir) Attr(ctx context.Context, a *fuse.Attr) error { - debug.Log("called") + debug.Log("Attr()") a.Inode = d.inode a.Mode = os.ModeDir | d.node.Mode a.Uid = d.root.uid @@ -137,7 +137,7 @@ func (d *dir) calcNumberOfLinks() uint32 { } func (d *dir) ReadDirAll(ctx context.Context) ([]fuse.Dirent, error) { - debug.Log("called") + debug.Log("ReadDirAll()") ret := make([]fuse.Dirent, 0, len(d.items)+2) ret = append(ret, fuse.Dirent{ diff --git a/internal/restic/testing.go b/internal/restic/testing.go index 0cf7d171a..b7a107f09 100644 --- a/internal/restic/testing.go +++ b/internal/restic/testing.go @@ -15,7 +15,7 @@ import ( ) // fakeFile returns a reader which yields deterministic pseudo-random data. -func fakeFile(t testing.TB, seed, size int64) io.Reader { +func fakeFile(seed, size int64) io.Reader { return io.LimitReader(rand.New(rand.NewSource(seed)), size) } @@ -138,7 +138,7 @@ func (fs *fakeFileSystem) saveTree(ctx context.Context, seed int64, depth int) I Size: uint64(fileSize), } - node.Content = fs.saveFile(ctx, fakeFile(fs.t, fileSeed, fileSize)) + node.Content = fs.saveFile(ctx, fakeFile(fileSeed, fileSize)) tree.Nodes = append(tree.Nodes, node) }