fix: fix error info start capitalized

Signed-off-by: zhangyue <zy675793960@yeah.net>
This commit is contained in:
zhangyue
2018-11-24 21:37:54 +08:00
parent dcb82064d3
commit 996c60616a
4 changed files with 8 additions and 8 deletions

View File

@@ -103,7 +103,7 @@ func waitForPid(process *os.Process) (int, error) {
case pid := <-c:
return pid, nil
case <-time.After(10 * time.Second):
return 0, errors.New("Process did not start in 10 seconds")
return 0, errors.New("process did not start in 10 seconds")
}
}