Skip to content

Commit a016367

Browse files
committed
remove duplicate separator in test diff pngs
1 parent d6017dd commit a016367

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/qgsrenderchecker.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@ bool QgsRenderChecker::compareImages( QString theTestName,
260260
QImage myDifferenceImage( myExpectedImage.width(),
261261
myExpectedImage.height(),
262262
QImage::Format_RGB32 );
263-
QString myDiffImageFile = QDir::tempPath() + QDir::separator() +
264-
QDir::separator() +
263+
QString myDiffImageFile = QDir::tempPath() +
264+
QDir::separator() +
265265
theTestName + "_result_diff.png";
266266
myDifferenceImage.fill( qRgb( 152, 219, 249 ) );
267267

0 commit comments

Comments
 (0)