Skip to content
Snippets Groups Projects
Unverified Commit 9fde1fa3 authored by Abirdcfly's avatar Abirdcfly Committed by GitHub
Browse files

fix minor unreachable code caused by t.Fatal (#4450)


Signed-off-by: default avatarAbirdcfly <fp544037857@gmail.com>

Signed-off-by: default avatarAbirdcfly <fp544037857@gmail.com>
Co-authored-by: default avatarmergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Co-authored-by: default avatarYingfeng <yingfeng.zhang@gmail.com>
Co-authored-by: default avatarlni <nilei81@gmail.com>
Co-authored-by: default avatarfengttt <fengttt@gmail.com>
parent 77d49e70
No related branches found
No related tags found
No related merge requests found
......@@ -83,8 +83,7 @@ func TestF32IntegerDiv(t *testing.T) {
err := NumericIntegerDivFloat[float32](av, bv, cv)
if err != nil {
t.Fatal(err)
t.Fatalf("decimal64 integer div failed")
t.Fatal(err, "decimal64 integer div failed")
}
}
......
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