Unverified Commit 18cb7ef6 authored by Abirdcfly's avatar Abirdcfly Committed by GitHub

fix checkError in terraform/testutils (#5893)

parent 77fa7fb4
...@@ -45,8 +45,7 @@ func GetBasepath() string { ...@@ -45,8 +45,7 @@ func GetBasepath() string {
func checkError(e error) { func checkError(e error) {
if e != nil { if e != nil {
log.Fatal(err) log.Fatal(e)
panic(e)
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment