Commit 9330c973 authored by Davis King's avatar Davis King

fixed broken test

parent 9a9eb5e5
......@@ -873,11 +873,11 @@ namespace
DLIB_TEST(count_points_between_lines(l1,l2,reference_point,pts) == 3);
DLIB_TEST(count_points_on_side_of_line(l1,reference_point,pts,10) == 4);
DLIB_TEST(count_points_on_side_of_line(l1,reference_point,pts) == 4);
reference_point = dpoint(0,0.5);
DLIB_TEST(count_points_between_lines(l1,l2,reference_point,pts) == 0);
DLIB_TEST(count_points_on_side_of_line(l1,reference_point,pts,10) == 1);
DLIB_TEST(count_points_on_side_of_line(l1,reference_point,pts) == 1);
}
......
Markdown is supported
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