Skip to content

Commit 8db5769

Browse files
author
Patrick Thomson
committed
remove unneeded third-party lib
1 parent 7f6d53b commit 8db5769

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

goblin_test.go

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package goblin
33
import (
44
"encoding/json"
55
"fmt"
6-
"github.com/juju/testing/checkers"
76
"io/ioutil"
87
"math"
98
"reflect"
@@ -155,9 +154,8 @@ func TestExpressionFixtures(t *testing.T) {
155154
}
156155

157156
t.Run(fix.name, func(tt *testing.T) {
158-
res, err := checkers.DeepEqual(gotten, neededJ)
159-
if !res {
160-
t.Error("equality comparison failed! " + err.Error())
157+
if !reflect.DeepEqual(gotten, neededJ) {
158+
t.Error("equality comparison failed!")
161159
}
162160
})
163161
}

0 commit comments

Comments
 (0)