From 806aea20c6447955c1fbf5694812e18b862289bd Mon Sep 17 00:00:00 2001 From: Paul Ramsey Date: Tue, 28 Feb 2012 18:29:57 +0000 Subject: [PATCH] Fix regression due to new error message in GML generation git-svn-id: http://svn.osgeo.org/postgis/trunk@9332 b70326c6-7e19-0410-871a-916f4a2858ee --- liblwgeom/cunit/cu_out_gml.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/liblwgeom/cunit/cu_out_gml.c b/liblwgeom/cunit/cu_out_gml.c index f53261d39..00c4ae2dd 100644 --- a/liblwgeom/cunit/cu_out_gml.c +++ b/liblwgeom/cunit/cu_out_gml.c @@ -604,12 +604,12 @@ static void out_gml_test_geoms(void) /* GML2 - PolyhedralSurface */ do_gml2_unsupported( "POLYHEDRALSURFACE(((0 1,2 3,4 5,0 1)))", - "lwgeom_to_gml2: 'PolyhedralSurface' geometry type not supported"); + "Cannot convert PolyhedralSurface to GML2. Try ST_AsGML(3, ) to generate GML3."); /* GML2 - Tin */ do_gml2_unsupported( "TIN(((0 1,2 3,4 5,0 1)))", - "lwgeom_to_gml2: 'Tin' geometry type not supported"); + "Cannot convert Tin to GML2. Try ST_AsGML(3, ) to generate GML3."); } static void out_gml_test_geoms_prefix(void) -- 2.40.0