Skip to content
This repository has been archived by the owner on May 5, 2020. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
remove kylelemons/godebug/diff in favor of google/go-cmp/cmp
  • Loading branch information
tgulacsi committed Aug 31, 2017
1 parent 0185fef commit 28c94ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions orahlp_test.go
Expand Up @@ -19,7 +19,7 @@ import (
"reflect"
"testing"

"github.com/kylelemons/godebug/diff"
"github.com/google/go-cmp/cmp"
)

func TestMapToSlice(t *testing.T) {
Expand Down Expand Up @@ -77,7 +77,7 @@ END;
} {

got, params := MapToSlice(tc.in, func(s string) interface{} { return s })
d := diff.Diff(tc.await, got)
d := cmp.Diff(tc.await, got)
if d != "" {
t.Errorf("%d. diff:\n%s", i, d)
}
Expand Down

0 comments on commit 28c94ed

Please sign in to comment.