Imploring: "Another melody?"

This commit is contained in:
Mark Bates 2019-11-01 16:00:30 -04:00
parent c191846c48
commit 952d962d54
1 changed files with 1 additions and 2 deletions

View File

@ -60,9 +60,8 @@ func CmpFileInfo(t *testing.T, a os.FileInfo, b os.FileInfo) {
t.Helper()
r := require.New(t)
r.Equal(a.IsDir(), b.IsDir())
r.Equal(a.Mode().String(), b.Mode().String())
r.Equal(a.Mode().Perm(), b.Mode().Perm())
r.Equal(a.Name(), b.Name())
// r.Equal(a.Size(), b.Size())
r.NotZero(b.ModTime())