Skip to content

Commit

Permalink
Fix missing value in test failure message
Browse files Browse the repository at this point in the history
  • Loading branch information
schmichael committed Jan 10, 2017
1 parent 3da811c commit 1bb4806
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/driver/driver_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ func testDriverContexts(t *testing.T, task *structs.Task) *testContext {
td := allocDir.NewTaskDir(task.Name)
if err := td.Build(config.DefaultChrootEnv, tmpdrv.FSIsolation()); err != nil {
allocDir.Destroy()
t.Fatalf("TaskDir.Build(%#v, %q) failed: %v", config.DefaultChrootEnv, tmpdrv.FSIsolation())
t.Fatalf("TaskDir.Build(%#v, %q) failed: %v", config.DefaultChrootEnv, tmpdrv.FSIsolation(), err)
return nil
}

Expand Down

0 comments on commit 1bb4806

Please sign in to comment.