File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ func Test_Container_Syslog(t *testing.T) {
59
59
return
60
60
}
61
61
if err := container .Close (); err != nil {
62
- t .Errorf ("Closing the syslog container returned '%s '" , err )
62
+ t .Errorf ("Closing the syslog container returned '%v '" , err )
63
63
}
64
64
log .Println ("Testing" )
65
65
fp , err := os .Open (logFilename )
@@ -69,6 +69,6 @@ func Test_Container_Syslog(t *testing.T) {
69
69
if err == nil {
70
70
t .Errorf ("Logging created a file '%s' but should have logged to syslog" , logFilename )
71
71
} else if ! os .IsNotExist (err ) {
72
- t .Errorf ("Logfile '%s' could not be opened but should not exist: '%s '" , logFilename , err )
72
+ t .Errorf ("Logfile '%s' could not be opened but should not exist: '%v '" , logFilename , err )
73
73
}
74
74
}
You can’t perform that action at this time.
0 commit comments