diff --git a/pkg/system/chtimes_unix_test.go b/pkg/system/chtimes_unix_test.go index 0aafe1d845..6ec9a7173c 100644 --- a/pkg/system/chtimes_unix_test.go +++ b/pkg/system/chtimes_unix_test.go @@ -9,7 +9,7 @@ import ( "time" ) -// TestChtimes tests Chtimes access time on a tempfile on Linux +// TestChtimesLinux tests Chtimes access time on a tempfile on Linux func TestChtimesLinux(t *testing.T) { file, dir := prepareTempFile(t) defer os.RemoveAll(dir) diff --git a/pkg/system/chtimes_windows_test.go b/pkg/system/chtimes_windows_test.go index be57558e1b..72d8a10619 100644 --- a/pkg/system/chtimes_windows_test.go +++ b/pkg/system/chtimes_windows_test.go @@ -9,7 +9,7 @@ import ( "time" ) -// TestChtimes tests Chtimes access time on a tempfile on Windows +// TestChtimesWindows tests Chtimes access time on a tempfile on Windows func TestChtimesWindows(t *testing.T) { file, dir := prepareTempFile(t) defer os.RemoveAll(dir)