From 8b82cc707359428d92eb92f2484cefe26e622c89 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Sat, 19 Nov 2016 10:35:00 +0000 Subject: [PATCH] Patch vendored version of stretchr to use latest go-spew --- vendor/github.com/stretchr/testify/assert/assertions.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/vendor/github.com/stretchr/testify/assert/assertions.go b/vendor/github.com/stretchr/testify/assert/assertions.go index 2feb41938..98276e2ae 100644 --- a/vendor/github.com/stretchr/testify/assert/assertions.go +++ b/vendor/github.com/stretchr/testify/assert/assertions.go @@ -1056,8 +1056,6 @@ func diff(expected interface{}, actual interface{}) string { } var spewConfig = spew.ConfigState{ - Indent: " ", - DisablePointerAddresses: true, - DisableCapacities: true, - SortKeys: true, + Indent: " ", + SortKeys: true, }