Skip to content

Commit

Permalink
fix checkError in terraform/testutils (k3s-io#5893)
Browse files Browse the repository at this point in the history
Signed-off-by: Abirdcfly <fp544037857@gmail.com>
  • Loading branch information
Abirdcfly authored and dereknola committed Sep 1, 2022
1 parent 3651f87 commit 2ac9b4e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/terraform/testutils.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ var err error

func checkError(e error) {
if e != nil {
log.Fatal(err)
panic(e)
log.Fatal(e)
}
}

Expand Down

0 comments on commit 2ac9b4e

Please sign in to comment.