aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/sandbox/fs.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/sandbox/fs.go')
-rw-r--r--test/sandbox/fs.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sandbox/fs.go b/test/sandbox/fs.go
index 68dcecfb..2aa3aa5d 100644
--- a/test/sandbox/fs.go
+++ b/test/sandbox/fs.go
@@ -30,7 +30,7 @@ func printDir(prefix string, dir []fs.DirEntry) {
}
names[i] = fmt.Sprintf("%q", name)
}
- printf("[FAIL] d %q: %s", prefix, strings.Join(names, " "))
+ printf("[FAIL] d %s: %s", prefix, strings.Join(names, " "))
}
func (s *FS) Compare(prefix string, e fs.FS) error {
@@ -71,7 +71,7 @@ func (s *FS) Compare(prefix string, e fs.FS) error {
if fi, err := got.Info(); err != nil {
return err
} else if fi.Mode() != want.Mode {
- printf("[FAIL] m %q: %x, want %x",
+ printf("[FAIL] m %s: %x, want %x",
name, uint32(fi.Mode()), uint32(want.Mode))
return ErrFSBadMode
}