HHH-16875 fix a test

This commit is contained in:
Gavin King 2023-07-04 22:35:15 +02:00
parent 5c318ea974
commit 8b6404eae6
1 changed files with 1 additions and 2 deletions

View File

@ -33,7 +33,6 @@ import org.geolatte.geom.crs.CoordinateReferenceSystems;
import static org.geolatte.geom.builder.DSL.c;
import static org.geolatte.geom.builder.DSL.point;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.junit.jupiter.api.Assertions.assertTrue;
@ -141,7 +140,7 @@ public class PostgisDistanceOperatorsTest {
);
assertTrue(
thrown.getMessage()
.contains("Parameter 1 of function distance_2d_bbox() has type SPATIAL, but argument is of type java.lang.Integer")
.contains("Parameter 1 of function 'distance_2d_bbox()' has type 'SPATIAL', but argument is of type 'java.lang.Integer'")
);
}