Skip to content

Commit

Permalink
put string in testset name
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaqz committed Jun 10, 2024
1 parent dea2c35 commit 8121476
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/methods/geom_relations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -156,15 +156,14 @@ test_pairs = [

function test_geom_relation(GO_f, LG_f, f_name; swap_points = false)
for (g1, g2, sg1, sg2, sdesc) in test_pairs
@test_all_implementations (g1, g2) begin
@test_all_implementations "$sg1 $f_name $sg2 - $sdesc" (g1, g2) begin
if swap_points
g1, g2 = g2, g1
sg1, sg2 = sg2, sg1
end
go_val = GO_f(g1, g2)
lg_val = LG_f(g1, g2)
@test go_val == lg_val
go_val != lg_val && println("\n↑ TEST INFO: $sg1 $f_name $sg2 - $sdesc \n\n")
end
end
end
Expand Down

0 comments on commit 8121476

Please sign in to comment.