Skip to content

Commit

Permalink
Improve test output
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Dec 27, 2017
1 parent 272a02d commit 2e1b9ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/core/testqgsexpression.cpp
Expand Up @@ -1221,7 +1221,7 @@ class TestQgsExpression: public QObject
qDebug() << exp.evalErrorString();
if ( result.type() != expected.type() )
{
qDebug() << "got " << result.typeName() << " instead of " << expected.typeName();
qDebug() << "got type " << result.typeName() << "(" << result.type() << ") instead of " << expected.typeName() << "(" << expected.type() << ")";
}
//qDebug() << res.type() << " " << result.type();
//qDebug() << "type " << res.typeName();
Expand Down

0 comments on commit 2e1b9ae

Please sign in to comment.