From ecee0354d91719672096db9f9da8f09c576f0399 Mon Sep 17 00:00:00 2001 From: Cosmos SDK <113218068+github-prbot@users.noreply.github.com> Date: Fri, 19 Apr 2024 14:43:39 +0200 Subject: [PATCH] chore: fix spelling errors (#20100) Co-authored-by: github-merge-queue <118344674+github-merge-queue@users.noreply.github.com> --- types/simulation/rand_util_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/simulation/rand_util_test.go b/types/simulation/rand_util_test.go index cf6a25862b..0bfbd24423 100644 --- a/types/simulation/rand_util_test.go +++ b/types/simulation/rand_util_test.go @@ -162,7 +162,7 @@ func TestRandomIntBetween(t *testing.T) { max int }{ {"random int between 0 and 10", rand.New(rand.NewSource(0)), 0, 10}, - {"random int between 11 ans 1000", rand.New(rand.NewSource(1)), 11, 1000}, + {"random int between 11 and 1000", rand.New(rand.NewSource(1)), 11, 1000}, {"random int between 10001 and 100000", rand.New(rand.NewSource(-1)), 1001, 10000}, } for _, tt := range tests {