From 1df9f0932e50ae497a6c79fc3a0ee85cb67f60d4 Mon Sep 17 00:00:00 2001 From: lixiaobing10051267 Date: Tue, 26 Jul 2016 20:04:11 +0800 Subject: [PATCH] Modify func name from TestChtimes to TestChtimesLinux Signed-off-by: lixiaobing10051267 Modify func note Signed-off-by: lixiaobing10051267 --- pkg/system/chtimes_unix_test.go | 2 +- pkg/system/chtimes_windows_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)