From 71064fac107195087714b2cf8cc3bb5c96bf8e77 Mon Sep 17 00:00:00 2001 From: Michael Eischer Date: Sat, 20 Jun 2026 19:34:44 +0200 Subject: [PATCH] mount: decrease sleep to speed up test --- cmd/restic/cmd_mount_integration_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/restic/cmd_mount_integration_test.go b/cmd/restic/cmd_mount_integration_test.go index 6aa3b8650..11aad54ed 100644 --- a/cmd/restic/cmd_mount_integration_test.go +++ b/cmd/restic/cmd_mount_integration_test.go @@ -22,8 +22,8 @@ import ( ) const ( - mountWait = 20 - mountSleep = 100 * time.Millisecond + mountWait = 400 + mountSleep = 5 * time.Millisecond mountTestSubdir = "snapshots" )