Skip to content
Snippets Groups Projects
Commit 881409ca authored by ko_oler's avatar ko_oler
Browse files

fix typo

parent 0aed2c41
No related branches found
No related tags found
No related merge requests found
...@@ -91,7 +91,7 @@ func TestID_ExampleJSON(t *testing.T) { ...@@ -91,7 +91,7 @@ func TestID_ExampleJSON(t *testing.T) {
require.NoError(t, err) require.NoError(t, err)
buf := new(data) buf := new(data)
err = jsoniter.Unmarshal(b, &test) err = jsoniter.Unmarshal(b, &buf)
require.NoError(t, err) require.NoError(t, err)
assert.Equal(t, test, buf, "после Unmarshal объект должен совпадать с исходным") assert.Equal(t, test, buf, "после Unmarshal объект должен совпадать с исходным")
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment