From a72f913a60bd2b203e1af6285e51afda9ac1adfd Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Fri, 14 Feb 2014 18:17:30 -0800 Subject: [PATCH] fix(tests/functional): some squashing mistakes in PR merge accidental squash mistake in the last PR that was merged caused a function to be renamed but not it's caller. --- tests/functional/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/functional/util.go b/tests/functional/util.go index 87be4e989..7544e3fbc 100644 --- a/tests/functional/util.go +++ b/tests/functional/util.go @@ -130,7 +130,7 @@ func CreateCluster(size int, procAttr *os.ProcAttr, ssl bool) ([][]string, []*os // which slows tests way down and some of them fail. if i == 0 { client := buildClient() - err = WaitServerUp("127.0.0.1:4001", client, "http") + err = WaitForServer("127.0.0.1:4001", client, "http") if err != nil { return nil, nil, err }