Skip to content

Commit

Permalink
remove debug print in request_id_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
usk81 committed Feb 10, 2017
1 parent 1963e27 commit 4dc9cd0
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions middleware/request_id_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import (
"net/http/httptest"
"testing"

"github.com/davecgh/go-spew/spew"
"github.com/labstack/echo"
uuid "github.com/satori/go.uuid"
"github.com/stretchr/testify/assert"
Expand All @@ -24,7 +23,6 @@ func TestRequestID(t *testing.T) {
h(c)
if assert.NotEmpty(t, rec.Header().Get("X-Request-ID")) {
u, err := uuid.FromString(rec.Header().Get("X-Request-ID"))
spew.Dump(u)
assert.NoError(t, err)
assert.Equal(t, uint(4), u.Version())
assert.Equal(t, uint(uuid.VariantRFC4122), u.Variant())
Expand Down

0 comments on commit 4dc9cd0

Please sign in to comment.