Commit c5f5c0ce authored by protolambda's avatar protolambda

differential-testing: fix lint issue in diff testing

parent 2dd2a627
......@@ -27,7 +27,7 @@ func checkOk(ok bool) {
// Shorthand to ease go's god awful error handling
func checkErr(err error, failReason string) {
if err != nil {
panic(fmt.Errorf("%s: %s", failReason, err))
panic(fmt.Errorf("%s: %w", failReason, err))
}
}
......
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