From 8f220f0e15fbdc458c16c7f4866afdc36a64478d Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Wed, 12 Aug 2015 15:57:14 +1000 Subject: [PATCH] Fixed an out of date description. --- fusetesting/stat.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/fusetesting/stat.go b/fusetesting/stat.go index c8bdbc1..239d6c5 100644 --- a/fusetesting/stat.go +++ b/fusetesting/stat.go @@ -23,9 +23,7 @@ import ( "github.com/jacobsa/oglematchers" ) -// Match os.FileInfo values that specify an mtime equal to the given time. On -// platforms where the Sys() method returns a struct containing an mtime, check -// also that it matches. +// Match os.FileInfo values that specify an mtime equal to the given time. func MtimeIs(expected time.Time) oglematchers.Matcher { return oglematchers.NewMatcher( func(c interface{}) error { return mtimeIsWithin(c, expected, 0) },