> 1) A failure in LabelObstacleTest
>>
>> The code is:
>>
>>         // we should have intersections, thus min should be 1
>>         double[] minimum = (double[]) extrema.getProperty("minimum");
>>         assertEquals(0.0, minimum[0], 0.0);
>>
>> The test results in 1 (which is what the comment expects), but the code
>> is checking for 0.0 and failing.
>>
>
> Hi Jody,
> I've just tried with btw Oracle JDK and OpenJDK 7 (1.7.0_51), on Linux 64
> bits,
> the test passes with both.
> Another OSX specific thing?
>

Yeah, the Oracle JDK has known font rendering issues on OSX (grrr!).

I have fixed the test to be:

 assertEquals(0.0, minimum[0], *1.0*);

I am more worried about the spatial-lite failure, which was working under
Appple Java 6.

--
Jody
------------------------------------------------------------------------------
_______________________________________________
GeoTools-Devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geotools-devel

Reply via email to