From 2857ed5c35e59a0ab40dbe78b64ad6deada59b99 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Wed, 27 Sep 2017 16:28:20 +0100 Subject: [PATCH] fs: fix --immutable tests on remotes which don't have modtime --- fs/sync_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/sync_test.go b/fs/sync_test.go index 33b4fe20a..1335179c9 100644 --- a/fs/sync_test.go +++ b/fs/sync_test.go @@ -1018,7 +1018,7 @@ func TestSyncImmutable(t *testing.T) { fstest.CheckItems(t, r.fremote, file1) // Modify file data and timestamp on source - file2 := r.WriteFile("existing", "tomato", t2) + file2 := r.WriteFile("existing", "tomatoes", t2) fstest.CheckItems(t, r.flocal, file2) fstest.CheckItems(t, r.fremote, file1)