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 <[email protected]>
Signed-off-by: Derek Nola <[email protected]>
  • Loading branch information
Abirdcfly authored and dereknola committed Sep 1, 2022
1 parent 5787c65 commit 7a50e78
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 7a50e78

Please sign in to comment.