From 453a7556b66b72de9adbb00f6013fdcb7b33340d Mon Sep 17 00:00:00 2001 From: Sean Chittenden Date: Wed, 1 Jun 2016 02:08:23 -0700 Subject: [PATCH] Pick the right `DefaultConfig` from the right package. Overly zealous search && replace at work here. --- client/client_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/client_test.go b/client/client_test.go index fff1d790a..24721b49b 100644 --- a/client/client_test.go +++ b/client/client_test.go @@ -70,7 +70,7 @@ func testServer(t *testing.T, cb func(*nomad.Config)) (*nomad.Server, string) { } func testClient(t *testing.T, cb func(c *config.Config)) *Client { - conf := nomad.DefaultConfig() + conf := config.DefaultConfig() conf.DevMode = true conf.ConsulConfig = &sconfig.ConsulConfig{} if cb != nil {