From 716ce49ce90ae32ff3c23e711b0fdcda97c404ee Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Sun, 4 Dec 2016 16:28:27 +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, }