From ee37fbc6a2ba9c80b69742eaa57ceae8a3f6f9ec Mon Sep 17 00:00:00 2001 From: Armon Dadgar Date: Fri, 10 Jan 2014 12:58:04 -0800 Subject: [PATCH] Fixing testServerDC method --- consul/server_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consul/server_test.go b/consul/server_test.go index 6c8151c62d..03d03304b6 100644 --- a/consul/server_test.go +++ b/consul/server_test.go @@ -30,7 +30,7 @@ func testServer(t *testing.T) (string, *Server) { } func testServerDC(t *testing.T, dc string) (string, *Server) { - return testServerDCBootstrap(t, "dc1", true) + return testServerDCBootstrap(t, dc, true) } func testServerDCBootstrap(t *testing.T, dc string, bootstrap bool) (string, *Server) {