From 31dfd3d1a65af78c04ac83f5a91b81f91ebee7f2 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Tue, 16 Apr 2024 13:11:37 -0700 Subject: [PATCH] Added type to assertion message [skip ci] --- test/t/034_distance_functions.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/t/034_distance_functions.pl b/test/t/034_distance_functions.pl index 0b3eeb0..0166bce 100644 --- a/test/t/034_distance_functions.pl +++ b/test/t/034_distance_functions.pl @@ -43,11 +43,11 @@ for my $function (@functions) # Test halfvec my $actual = $node->safe_psql("postgres", "SELECT $function(v::halfvec, '$query'::vector::halfvec) FROM tst"); - is($expected, $actual, $function); + is($expected, $actual, "halfvec $function"); # Test sparsevec $actual = $node->safe_psql("postgres", "SELECT $function(v::sparsevec, '$query'::vector::sparsevec) FROM tst"); - is($expected, $actual, $function); + is($expected, $actual, "sparsevec $function"); } }