Fix misspelling of existence in integration test

pull/7283/head
Anders F Björklund 2020-03-27 09:33:21 +01:00
parent d0fb1fd44c
commit d2f3e18d3a
1 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ func TestGuestEnvironment(t *testing.T) {
t.Parallel()
rr, err := Run(t, exec.CommandContext(ctx, Target(), "-p", profile, "ssh", fmt.Sprintf("which %s", pkg)))
if err != nil {
t.Errorf("failed to verify existance of %q binary : args %q: %v", pkg, rr.Command(), err)
t.Errorf("failed to verify existence of %q binary : args %q: %v", pkg, rr.Command(), err)
}
})
}
@ -70,7 +70,7 @@ func TestGuestEnvironment(t *testing.T) {
t.Parallel()
rr, err := Run(t, exec.CommandContext(ctx, Targt(), "-p", profile, "ssh", fmt.Sprintf("df -t ext4 %s | grep %s", mount, mount)))
if err != nil {
t.Errorf("failed to verify existance of %q mount. args %q: %v", mount, rr.Command(), err)
t.Errorf("failed to verify existence of %q mount. args %q: %v", mount, rr.Command(), err)
}
})
}