Skip to content

Commit 9fde1fa

Browse files
Abirdcflymergify[bot]yingfenglnifengttt
authored
fix minor unreachable code caused by t.Fatal (#4450)
Signed-off-by: Abirdcfly <[email protected]> Signed-off-by: Abirdcfly <[email protected]> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> Co-authored-by: Yingfeng <[email protected]> Co-authored-by: lni <[email protected]> Co-authored-by: fengttt <[email protected]>
1 parent 77d49e7 commit 9fde1fa

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pkg/vectorize/div/integer_div_test.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,7 @@ func TestF32IntegerDiv(t *testing.T) {
8383

8484
err := NumericIntegerDivFloat[float32](av, bv, cv)
8585
if err != nil {
86-
t.Fatal(err)
87-
t.Fatalf("decimal64 integer div failed")
86+
t.Fatal(err, "decimal64 integer div failed")
8887
}
8988
}
9089

0 commit comments

Comments
 (0)