Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Jun 18, 2018
1 parent cb91176 commit 7c4a204
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/src/core/testqgsmimedatautils.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ void TestQgsMimeDataUtils::testEncodeDecode()


QStringList fragments( QgsMimeDataUtils::decode( data ) ); QStringList fragments( QgsMimeDataUtils::decode( data ) );


QCOMPARE( fragments[0], "raster" ); QCOMPARE( fragments[0], QString( "raster" ) );
QCOMPARE( fragments[1], "wms" ); QCOMPARE( fragments[1], QString( "wms" ) );
QCOMPARE( fragments[2], "A Fancy WMS From Ciriè City" ); QCOMPARE( fragments[2], QString( "A Fancy WMS From Ciriè City" ) );
QCOMPARE( fragments[3], "crs=EPSG:2036&dpiMode=7&format=image/png&layers=lidar&styles=default&url=https://geoegl.msp.gouv.qc." ); QCOMPARE( fragments[3], QString( "crs=EPSG:2036&dpiMode=7&format=image/png&layers=lidar&styles=default&url=https://geoegl.msp.gouv.qc." ) );
QCOMPARE( fragments[4], "EPSG\\:2036:EPSG\\:3857" ); QCOMPARE( fragments[4], QString( "EPSG\\:2036:EPSG\\:3857" ) );


} }


Expand Down

0 comments on commit 7c4a204

Please sign in to comment.