diff options
Diffstat (limited to 'coll/jsonpath_test.go')
| -rw-r--r-- | coll/jsonpath_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coll/jsonpath_test.go b/coll/jsonpath_test.go index 147fc2ea..c7bacc20 100644 --- a/coll/jsonpath_test.go +++ b/coll/jsonpath_test.go @@ -65,7 +65,7 @@ func TestJSONPath(t *testing.T) { out, err = JSONPath(".store", in) require.NoError(t, err) - assert.EqualValues(t, in["store"], out) + assert.Equal(t, in["store"], out) out, err = JSONPath("$.store.book[*].author", in) require.NoError(t, err) @@ -92,7 +92,7 @@ func TestJSONPath(t *testing.T) { "price": 8.99, }, } - assert.EqualValues(t, expected, out) + assert.Equal(t, expected, out) in = m{ "a": m{ |
