We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a8ab5cd + 2c5bd7f commit cd73b09Copy full SHA for cd73b09
cmd/nerdctl/run_test.go
@@ -234,7 +234,7 @@ func TestRunWithJsonFileLogDriver(t *testing.T) {
234
matches, err := filepath.Glob(filepath.Join(logJSONPath, inspectedContainer.ID+"*"))
235
assert.NilError(t, err)
236
if len(matches) != 2 {
237
- t.Fatal("the maximum number of old log files to retain exceeded 2 files")
+ t.Fatalf("the maximum number of old log files to retain exceeded 2 files, got: %s", matches)
238
}
239
for _, file := range matches {
240
fInfo, err := os.Stat(file)
0 commit comments