Commit da8b3e44 authored by Han-Wen Nienhuys's avatar Han-Wen Nienhuys

unionfs: fix format string in test

parent 90605253
......@@ -1420,7 +1420,7 @@ func TestUnionFsPromoteDirTimeStamp(t *testing.T) {
// TODO - need to update timestamps after promoteDirsTo calls,
// not during.
if false && fRo.ModTime().Equal(fRw.ModTime()) {
t.Errorf("Changed timestamps on promoted subdir: ro %d rw %d", fRo.ModTime(), fRw.ModTime())
t.Errorf("Changed timestamps on promoted subdir: ro %v rw %v", fRo.ModTime(), fRw.ModTime())
}
if fRo.Mode().Perm()|0200 != fRw.Mode().Perm() {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment