Commit 7a50e780 authored by Abirdcfly's avatar Abirdcfly Committed by Derek Nola

fix checkError in terraform/testutils (#5893)

parent 5787c658
...@@ -38,8 +38,7 @@ var err error ...@@ -38,8 +38,7 @@ var err error
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