Skip to content

Commit

Permalink
revert express to expRes
Browse files Browse the repository at this point in the history
  • Loading branch information
Vritra4 committed Nov 14, 2024
1 parent dedb34e commit f4e6491
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions x/move/client/cli/utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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},
Expand All @@ -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)
}
}
}
Expand Down

0 comments on commit f4e6491

Please sign in to comment.