Skip to content

Commit 4a3f8f8

Browse files
committed
Fix test again
1 parent f240686 commit 4a3f8f8

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/test_PSs.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,8 @@ for i in 1:2
257257
for s in 1:size(c,1)-1
258258
GMT._blp_seg2cross(x1,y1_,x2,y2_, c[s,1],c[s,2], c[s+1,1],c[s+1,2]) && (crossings += 1)
259259
end
260-
@test crossings >= 1 "Crossing segment for curve $i does not cross the curve"
260+
(crossings >= 1) && @warn "Crossing segment for curve $i does not cross the curve"
261+
@test crossings >= 1
261262
end
262263

263264
# 3) X-crossing lines: labels should NOT be near each other

0 commit comments

Comments
 (0)