Skip to content

Commit 77582cb

Browse files
author
timlinux
committedJan 21, 2008
Prefix image urls with file://
git-svn-id: http://svn.osgeo.org/qgis/trunk@8018 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 0fb2499 commit 77582cb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎tests/src/core/qgsrenderchecker.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,11 @@ bool QgsRenderChecker::runTest( QString theTestName )
9494
mReport += "Actual Duration : " + QString::number(mElapsedTime) + "ms<br>";
9595
QString myImagesString= "</td></tr>"
9696
"<tr><td>Test Result:</td><td>Expected Result:</td><td>Difference (all blue is good, any red is bad)</td></tr>\n"
97-
"<tr><td><img src=\"" +
97+
"<tr><td><img src=\"file://" +
9898
myResultImage +
99-
"\"></td>\n<td><img src=\"" +
99+
"\"></td>\n<td><img src=\"file://" +
100100
mExpectedImageFile +
101-
"\"></td><td><img src=\"" +
101+
"\"></td><td><img src=\"file://" +
102102
myResultDiffImage +
103103
"\"></td>\n</tr>\n</table>";
104104
//

0 commit comments

Comments
 (0)
Please sign in to comment.