Merge pull request #131 from vbatts/firmer_test_time

check: test times weren't different enough
This commit is contained in:
Vincent Batts 2017-06-15 20:10:43 -05:00 committed by GitHub
commit bc45166bfc
1 changed files with 2 additions and 2 deletions

View File

@ -58,8 +58,8 @@ func TestCheckKeywords(t *testing.T) {
}
// Touch a file, so the mtime changes.
now := time.Now()
if err := os.Chtimes(tmpfn, now, now); err != nil {
newtime := time.Date(2006, time.February, 1, 3, 4, 5, 0, time.UTC)
if err := os.Chtimes(tmpfn, newtime, newtime); err != nil {
t.Fatal(err)
}