From: Paul Ramsey Date: Tue, 28 Feb 2012 18:29:57 +0000 (+0000) Subject: Fix regression due to new error message in GML generation X-Git-Tag: 2.0.0beta1~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=806aea20c6447955c1fbf5694812e18b862289bd;p=postgis 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 --- 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)