From 4544a77172e8a4b6671109ccf13a5a9eb84b3fb8 Mon Sep 17 00:00:00 2001 From: Alexander Neumann Date: Sun, 1 Apr 2018 13:49:42 +0200 Subject: [PATCH] Slightly increment size for TestIncrementalBackup This should make the test more reliable, it should hit the accidental "repo is has grown too much" way less often. --- cmd/restic/integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/restic/integration_test.go b/cmd/restic/integration_test.go index a48402bc8..5b4e67e17 100644 --- a/cmd/restic/integration_test.go +++ b/cmd/restic/integration_test.go @@ -576,7 +576,7 @@ func TestBackupExclude(t *testing.T) { } const ( - incrementalFirstWrite = 6 * 1042 * 1024 + incrementalFirstWrite = 10 * 1042 * 1024 incrementalSecondWrite = 1 * 1042 * 1024 incrementalThirdWrite = 1 * 1042 * 1024 )