diff options
Diffstat (limited to 'tests/Version_test.cpp')
-rw-r--r-- | tests/Version_test.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/Version_test.cpp b/tests/Version_test.cpp index 734528b7..6836b6fa 100644 --- a/tests/Version_test.cpp +++ b/tests/Version_test.cpp @@ -15,7 +15,6 @@ #include <QTest> -#include <TestUtil.h> #include <Version.h> class ModUtilsTest : public QObject @@ -74,6 +73,8 @@ private slots: const auto v1 = Version(first); const auto v2 = Version(second); + qDebug() << v1 << "vs" << v2; + QCOMPARE(v1 < v2, lessThan); QCOMPARE(v1 > v2, !lessThan && !equal); QCOMPARE(v1 == v2, equal); |