diff options
author | 2017-02-22 07:25:58 +0000 | |
---|---|---|
committer | 2017-02-22 07:25:58 +0000 | |
commit | c5224b104836539dce0a07dc58004e943f8ec812 (patch) | |
tree | c02342c73aa26e288d8132698fcacdbf9d27b2ff /middleware/trace/setup_test.go | |
parent | 81af74aad0d51961a7622fcb410d510ff83f9dd6 (diff) | |
download | coredns-c5224b104836539dce0a07dc58004e943f8ec812.tar.gz coredns-c5224b104836539dce0a07dc58004e943f8ec812.tar.zst coredns-c5224b104836539dce0a07dc58004e943f8ec812.zip |
Golint (#548)
* linter fixes
* Golint and format code
* fmt
Diffstat (limited to 'middleware/trace/setup_test.go')
-rw-r--r-- | middleware/trace/setup_test.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/middleware/trace/setup_test.go b/middleware/trace/setup_test.go index b565cd5d1..3c12b76e4 100644 --- a/middleware/trace/setup_test.go +++ b/middleware/trace/setup_test.go @@ -8,12 +8,12 @@ import ( func TestTraceParse(t *testing.T) { tests := []struct { - input string - shouldErr bool - endpoint string - every uint64 - serviceName string - clientServer bool + input string + shouldErr bool + endpoint string + every uint64 + serviceName string + clientServer bool }{ // oks {`trace`, false, "http://localhost:9411/api/v1/spans", 1, `coredns`, false}, |