From e79f4d39515391078b9f8ee79ef1f1fdc2acd660 Mon Sep 17 00:00:00 2001 From: "mergify[bot]" <37929162+mergify[bot]@users.noreply.github.com> Date: Thu, 1 Dec 2022 14:13:02 +0100 Subject: [PATCH] Fix typo in new option in e2e manifest node (#9806) (#9811) The "toml" annotation of "send no load" had a typo (`send_no_laod`). This is suspected to have caused failures in e2e, however I couldn't reproduce the error locally, so not sure this will fix it. Still, the typo needs to be fixed in any case. --- #### PR checklist - [x] Tests written/updated, or no tests needed - [x] `CHANGELOG_PENDING.md` updated, or no changelog entry needed - [x] Updated relevant documentation (`docs/`) and code comments, or no documentation updates needed (cherry picked from commit 739b92bf0151e49f3c426a5a7e38de8590f6a9a6) Co-authored-by: Sergio Mena --- test/e2e/pkg/manifest.go | 2 +- test/e2e/runner/main.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/e2e/pkg/manifest.go b/test/e2e/pkg/manifest.go index 7e7c1b3d8..b32b50ae7 100644 --- a/test/e2e/pkg/manifest.go +++ b/test/e2e/pkg/manifest.go @@ -144,7 +144,7 @@ type ManifestNode struct { // SendNoLoad determines if the e2e test should send load to this node. // It defaults to false so unless the configured, the node will // receive load. - SendNoLoad bool `toml:"send_no_laod"` + SendNoLoad bool `toml:"send_no_load"` } // Save saves the testnet manifest to a file. diff --git a/test/e2e/runner/main.go b/test/e2e/runner/main.go index 3e9e2c66c..33edf64be 100644 --- a/test/e2e/runner/main.go +++ b/test/e2e/runner/main.go @@ -288,7 +288,7 @@ func NewCLI() *CLI { Max Block Interval over a 100 block sampling period. -Does not run any perbutations. +Does not run any perturbations. `, RunE: func(cmd *cobra.Command, args []string) error { if err := Cleanup(cli.testnet); err != nil { @@ -304,7 +304,7 @@ Does not run any perbutations. go func() { err := Load(ctx, cli.testnet) if err != nil { - logger.Error(fmt.Sprintf("Transaction load failed: %v", err.Error())) + logger.Error(fmt.Sprintf("Transaction load errored: %v", err.Error())) } chLoadResult <- err }()