Skip to content

Commit a8770b7

Browse files
committed
Fix Travis quirks
1 parent 748a73a commit a8770b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/src/core/testqgsjsonutils.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ class TestQgsJsonUtils : public QObject
179179
if ( w.first.startsWith( QStringLiteral( "CIRCULARSTRING" ) ) )
180180
{
181181
QVERIFY( g.asJson( 3 ).startsWith( w.second ) );
182-
QCOMPARE( g.asJsonObject( 3 )["type"], "LineString" );
182+
QCOMPARE( QString::fromStdString( g.asJsonObject( 3 )["type"].dump() ), QStringLiteral( R"("LineString")" ) );
183183
}
184184
else
185185
{

0 commit comments

Comments
 (0)