From f3a0dbabeedf3290b27c603b91bcf7ae5a65ad72 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 12 Jul 2020 13:43:34 +0200 Subject: [PATCH] tests: fix TestCpWarnings comment typo --- tests/defaults/main_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/defaults/main_test.go b/tests/defaults/main_test.go index 149046a..51f5cd2 100644 --- a/tests/defaults/main_test.go +++ b/tests/defaults/main_test.go @@ -195,6 +195,7 @@ func TestWrite0200File(t *testing.T) { } } +// TestMvWarnings: // When xattr support was introduced, mv threw warnings like these: // mv: preserving permissions for ‘b/x’: Operation not permitted // because we returned EPERM when it tried to set system.posix_acl_access. @@ -243,7 +244,7 @@ func TestMvWarningSymlink(t *testing.T) { } } -// See TestCpWarnings. +// See TestMvWarnings. func TestCpWarnings(t *testing.T) { fn := test_helpers.TmpDir + "/TestCpWarnings" err := ioutil.WriteFile(fn, []byte("foo"), 0600)