From 6b667cc3404b9f1e92cf88e7668949e717da132c Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Tue, 22 Mar 2016 11:13:12 +0000 Subject: [PATCH] tests --- middleware/etcd/path_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/middleware/etcd/path_test.go b/middleware/etcd/path_test.go index 182675067..feebb4210 100644 --- a/middleware/etcd/path_test.go +++ b/middleware/etcd/path_test.go @@ -3,11 +3,11 @@ package etcd import "testing" func TestPath(t *testing.T) { - for path := range []string{"mydns", "skydns"} { - e := Etcd{PathPrefix: "mydns"} + for _, path := range []string{"mydns", "skydns"} { + e := Etcd{PathPrefix: path} result := e.Path("service.staging.skydns.local.") - if result != "/"+path+"/"+"/local/skydns/staging/service" { - t.Errorf("Failure to get domain's path with prefix: %s", path) + if result != "/"+path+"/local/skydns/staging/service" { + t.Errorf("Failure to get domain's path with prefix: %s", result) } } }