From b6af01bb287b9dd5b22d12f7218498e196db5404 Mon Sep 17 00:00:00 2001 From: Winfried Plappert <18740761+wplapper@users.noreply.github.com> Date: Sun, 28 Dec 2025 16:53:50 +0000 Subject: [PATCH] restic rewrite integration test convert exclusive lock on repository to 'no-lock' --- cmd/restic/cmd_rewrite_integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/restic/cmd_rewrite_integration_test.go b/cmd/restic/cmd_rewrite_integration_test.go index dc5fd9a85..ddebc8329 100644 --- a/cmd/restic/cmd_rewrite_integration_test.go +++ b/cmd/restic/cmd_rewrite_integration_test.go @@ -250,7 +250,7 @@ func TestRewriteIncludeFiles(t *testing.T) { err = withTermStatus(t, env.gopts, func(ctx context.Context, gopts global.Options) error { printer := ui.NewProgressPrinter(gopts.JSON, gopts.Verbosity, gopts.Term) - _, repo, unlock, err := openWithExclusiveLock(ctx, gopts, false, printer) + _, repo, unlock, err := openWithReadLock(ctx, gopts, false, printer) rtest.OK(t, err) defer unlock()