This commit is contained in:
Alex Dadgar
2017-07-22 22:43:33 -07:00
parent 8500b6fcb9
commit 80c4b03f07

View File

@@ -168,7 +168,7 @@ func TestJavaDriver_Start_Wait(t *testing.T) {
select {
case res := <-resp.Handle.WaitCh():
if !res.Successful() {
t.Fatal("err: %v", res.String())
t.Fatalf("err: %v", res.String())
}
case <-time.After(5 * time.Second):
t.Fatalf("timeout")
@@ -403,7 +403,7 @@ func TestJavaDriver_Start_Wait_Class(t *testing.T) {
select {
case res := <-resp.Handle.WaitCh():
if !res.Successful() {
t.Fatal("err: %v", res.String())
t.Fatalf("err: %v", res.String())
}
case <-time.After(5 * time.Second):
t.Fatalf("timeout")