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: Nikolai Shields <[email protected]>
  • Loading branch information
Abirdcfly authored and nikolaishields committed Sep 14, 2022
1 parent e41c473 commit 0715178
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 @@ -45,8 +45,7 @@ func GetBasepath() string {

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

Expand Down

0 comments on commit 0715178

Please sign in to comment.