mirror of https://github.com/CGAL/cgal
fix test
This commit is contained in:
parent
61169b394e
commit
6542aee648
|
|
@ -7,7 +7,7 @@
|
|||
int main()
|
||||
{
|
||||
int u = CGAL::get_default_random().get_int( 0, 1000);
|
||||
if(u >= 0 || u <= 1000)
|
||||
if(u >= 0 && u < 1000)
|
||||
return 0;
|
||||
else
|
||||
return 1;
|
||||
|
|
|
|||
Loading…
Reference in New Issue