Skip to content

Commit 7c4a204

Browse files
committed
Fix test
1 parent cb91176 commit 7c4a204

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/src/core/testqgsmimedatautils.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ void TestQgsMimeDataUtils::testEncodeDecode()
9696

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

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

105105
}
106106

0 commit comments

Comments
 (0)