From f4e64912932b1fd34c51ef7b7a03325efecbd0bf Mon Sep 17 00:00:00 2001 From: Vritra4 Date: Thu, 14 Nov 2024 16:14:10 +0900 Subject: [PATCH] revert express to expRes --- x/move/client/cli/utils_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/x/move/client/cli/utils_test.go b/x/move/client/cli/utils_test.go index 207cf4fa..c2b118d3 100644 --- a/x/move/client/cli/utils_test.go +++ b/x/move/client/cli/utils_test.go @@ -37,10 +37,10 @@ func Test_readJSONStringArray(t *testing.T) { func Test_decodeJSONStringArray(t *testing.T) { testCases := []struct { - name string - ss []string - express []string - expErr bool + name string + ss []string + expRes []string + expErr bool }{ {"empty", []string{}, []string{}, false}, {"empty array", []string{}, []string{}, false}, @@ -55,7 +55,7 @@ func Test_decodeJSONStringArray(t *testing.T) { require.Error(t, err, tc.name) } else { require.NoError(t, err, tc.name) - require.Equal(t, tc.express, res, tc.name) + require.Equal(t, tc.expRes, res, tc.name) } } }