Skip to content

Commit

Permalink
remove duplicate separator in test diff pngs
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Feb 1, 2015
1 parent d6017dd commit a016367
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/qgsrenderchecker.cpp
Expand Up @@ -260,8 +260,8 @@ bool QgsRenderChecker::compareImages( QString theTestName,
QImage myDifferenceImage( myExpectedImage.width(),
myExpectedImage.height(),
QImage::Format_RGB32 );
QString myDiffImageFile = QDir::tempPath() + QDir::separator() +
QDir::separator() +
QString myDiffImageFile = QDir::tempPath() +
QDir::separator() +
theTestName + "_result_diff.png";
myDifferenceImage.fill( qRgb( 152, 219, 249 ) );

Expand Down

0 comments on commit a016367

Please sign in to comment.