diff --git a/baseapp/test_helpers.go b/baseapp/test_helpers.go index 1cb71825bc..d4652371ae 100644 --- a/baseapp/test_helpers.go +++ b/baseapp/test_helpers.go @@ -59,7 +59,7 @@ func (app *BaseApp) NewContextLegacy(isCheckTx bool, header cmtproto.Header) sdk return sdk.NewContext(app.finalizeBlockState.ms, false, app.logger).WithBlockHeader(header) } -// NewContext returns a new sdk.Context with a empty header +// NewContext returns a new sdk.Context with an empty header func (app *BaseApp) NewContext(isCheckTx bool) sdk.Context { return app.NewContextLegacy(isCheckTx, cmtproto.Header{}) } diff --git a/tests/systemtests/grpc_test.go b/tests/systemtests/grpc_test.go index 444b5405f8..a549ea4690 100644 --- a/tests/systemtests/grpc_test.go +++ b/tests/systemtests/grpc_test.go @@ -33,7 +33,7 @@ func TestGRPC(t *testing.T) { require.Greater(t, len(services), 0) require.Contains(t, services, "cosmos.staking.v1beta1.Query") - // test query invokation + // test query invocation rf, formatter, err := grpcurl.RequestParserAndFormatter(grpcurl.FormatText, descSource, os.Stdin, grpcurl.FormatOptions{}) require.NoError(t, err) diff --git a/x/accounts/defaults/lockup/continuous_locking_account_test.go b/x/accounts/defaults/lockup/continuous_locking_account_test.go index 734755a2b7..72833a3fbe 100644 --- a/x/accounts/defaults/lockup/continuous_locking_account_test.go +++ b/x/accounts/defaults/lockup/continuous_locking_account_test.go @@ -151,7 +151,7 @@ func TestContinuousAccountSendCoins(t *testing.T) { require.NoError(t, err) } -func TestContinousAccountGetLockCoinInfo(t *testing.T) { +func TestContinuousAccountGetLockCoinInfo(t *testing.T) { ctx, ss := newMockContext(t) sdkCtx := sdk.NewContext(nil, true, log.NewNopLogger()).WithContext(ctx).WithHeaderInfo(header.Info{ Time: time.Now(),