From c449f07b386200b1a97a5aed8b76aea6307fbf33 Mon Sep 17 00:00:00 2001 From: Armon Dadgar Date: Wed, 19 Nov 2014 13:38:58 -0800 Subject: [PATCH] agent: Fixing config merge test --- command/agent/config_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/command/agent/config_test.go b/command/agent/config_test.go index 64cb8b69ba..13e8634ce4 100644 --- a/command/agent/config_test.go +++ b/command/agent/config_test.go @@ -878,6 +878,7 @@ func TestMergeConfig(t *testing.T) { EnableDebug: false, CheckUpdateIntervalRaw: "8m", RetryIntervalRaw: "10s", + RetryIntervalWanRaw: "10s", } b := &Config{ @@ -964,7 +965,7 @@ func TestMergeConfig(t *testing.T) { c := MergeConfig(a, b) if !reflect.DeepEqual(c, b) { - t.Fatalf("should be equal %v %v", c, b) + t.Fatalf("should be equal %#v %#v", c, b) } }