From e50f995d879d5efcd36a001b8ba64a93242c4929 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Tue, 12 Nov 2024 12:29:44 +0000 Subject: [PATCH] operations: fix TestRemoveExisting on crypt backends by shortening the file name --- fs/operations/operations_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/operations/operations_test.go b/fs/operations/operations_test.go index 2a5c3cb6c..3f02c1bf1 100644 --- a/fs/operations/operations_test.go +++ b/fs/operations/operations_test.go @@ -1893,7 +1893,7 @@ func TestRemoveExisting(t *testing.T) { } file1 := r.WriteObject(ctx, "sub dir/test remove existing", "hello world", t1) - file2 := r.WriteObject(ctx, "sub dir/test remove existing with long name 1234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890", "hello long name world", t1) + file2 := r.WriteObject(ctx, "sub dir/test remove existing with long name 123456789012345678901234567890123456789012345678901234567890123456789", "hello long name world", t1) r.CheckRemoteItems(t, file1, file2)