Skip to content

Commit

Permalink
cmd: address typo in end-to-end tests
Browse files Browse the repository at this point in the history
Signed-off-by: Hidde Beydals <[email protected]>
  • Loading branch information
hiddeco committed Aug 21, 2023
1 parent aa1eae2 commit 0ab8740
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/flux/main_e2e_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ func TestMain(m *testing.M) {
// Install Flux.
output, err := executeCommand("install --components-extra=image-reflector-controller,image-automation-controller")
if err != nil {
panic(fmt.Errorf("install falied: %s error:'%w'", output, err))
panic(fmt.Errorf("install failed: %s error:'%w'", output, err))
}

// Run tests
Expand All @@ -50,7 +50,7 @@ func TestMain(m *testing.M) {
// Uninstall Flux
output, err = executeCommand("uninstall -s --keep-namespace")
if err != nil {
panic(fmt.Errorf("uninstall falied: %s error:'%w'", output, err))
panic(fmt.Errorf("uninstall failed: %s error:'%w'", output, err))
}

// Delete namespace and wait for finalisation
Expand Down

0 comments on commit 0ab8740

Please sign in to comment.