Skip to content

Commit

Permalink
fix(pkg/numbers): fix tests (ignite#2033)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilgooz authored Jan 27, 2022
1 parent 664a64f commit 9e871dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion starport/pkg/numbers/numbers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func TestParseListErrors(t *testing.T) {
err error
}{
{"12-8", errors.New("cannot parse a reverse ordering range: 12-8")},
{"1-2-3", errors.New("cannot parse a reverse ordering range: 1-2-3")},
{"1-2-3", errors.New("cannot parse the number range: 1-2-3")},
}
for _, tt := range cases {
t.Run("list "+tt.list, func(t *testing.T) {
Expand Down

0 comments on commit 9e871dd

Please sign in to comment.