[#787] util/attributes: Fix order of require.Equal arguments

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
Alex Vanin 2021-08-31 18:51:50 +03:00 committed by Alex Vanin
parent 2d7e9f0c40
commit f09b7e48af

View file

@ -63,10 +63,10 @@ func TestParseV2Attributes(t *testing.T) {
} }
attrs, err := attributes.ParseV2Attributes(from, nil) attrs, err := attributes.ParseV2Attributes(from, nil)
require.NoError(t, err) require.NoError(t, err)
require.Equal(t, attrs[0].Key(), `K:ey1`) require.Equal(t, `K:ey1`, attrs[0].Key())
require.Equal(t, attrs[0].Value(), `V/alue\`) require.Equal(t, `V/alue\`, attrs[0].Value())
require.Equal(t, attrs[1].Key(), `Ke/y2`) require.Equal(t, `Ke/y2`, attrs[1].Key())
require.Equal(t, attrs[1].Value(), `Va:lue`) require.Equal(t, `Va:lue`, attrs[1].Value())
}) })
t.Run("same attributes", func(t *testing.T) { t.Run("same attributes", func(t *testing.T) {
@ -89,7 +89,7 @@ func TestParseV2Attributes(t *testing.T) {
for _, attr := range attrs { for _, attr := range attrs {
if attr.Key() == "child" { if attr.Key() == "child" {
flag = true flag = true
require.Equal(t, attr.ParentKeys(), []string{"parent1", "parent2"}) require.Equal(t, []string{"parent1", "parent2"}, attr.ParentKeys())
} }
} }
require.True(t, flag) require.True(t, flag)
@ -102,12 +102,12 @@ func TestParseV2Attributes(t *testing.T) {
attrs, err := attributes.ParseV2Attributes(from, nil) attrs, err := attributes.ParseV2Attributes(from, nil)
require.NoError(t, err) require.NoError(t, err)
require.Equal(t, attrs[0].Key(), "a") require.Equal(t, "a", attrs[0].Key())
require.Equal(t, attrs[0].Value(), "1") require.Equal(t, "1", attrs[0].Value())
require.Equal(t, attrs[1].Key(), "b") require.Equal(t, "b", attrs[1].Key())
require.Equal(t, attrs[1].Value(), "2") require.Equal(t, "2", attrs[1].Value())
require.Equal(t, attrs[2].Key(), "c") require.Equal(t, "c", attrs[2].Key())
require.Equal(t, attrs[2].Value(), "3") require.Equal(t, "3", attrs[2].Value())
} }
}) })
} }