summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorChristoph Vogtländer <c.vogtlaender@sigma-surface-science.com>2015-01-16 13:17:22 +0100
committerChristoph Vogtländer <c.vogtlaender@sigma-surface-science.com>2015-01-20 17:01:39 +0100
commit552d964c6f0c3e9e9addc9b97eb247a039b6d140 (patch)
tree2fa02ed39fcc7fc65cc97363d765f97f67749d32 /tests
parent36a9594bce7b6e0be22446734dede93a31e95ed3 (diff)
no longer use Version as the repository format version
Use the Version value defined in config.xml as the product version exclusively instead of sometimes using it as the repository format version in components.xml (which must be 1.0.0) and sometimes as the product version. Change-Id: I63864947bf131ac6e246a2aaf6febdda0555c13d Reviewed-by: Leena Miettinen <riitta-leena.miettinen@theqtcompany.com> Reviewed-by: Niels Weber <niels.weber@theqtcompany.com> Reviewed-by: Kai Koehne <kai.koehne@theqtcompany.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/installer/settings/tst_settings.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/installer/settings/tst_settings.cpp b/tests/auto/installer/settings/tst_settings.cpp
index 241e4e546..018650b1c 100644
--- a/tests/auto/installer/settings/tst_settings.cpp
+++ b/tests/auto/installer/settings/tst_settings.cpp
@@ -31,7 +31,7 @@ void tst_Settings::loadTutorialConfig()
// specified values
QCOMPARE(settings.applicationName(), QLatin1String("Your application"));
- QCOMPARE(settings.applicationVersion(), QLatin1String("1.2.3"));
+ QCOMPARE(settings.version(), QLatin1String("1.2.3"));
QCOMPARE(settings.title(), QLatin1String("Your application Installer"));
QCOMPARE(settings.publisher(), QLatin1String("Your vendor"));
QCOMPARE(settings.startMenuDir(), QLatin1String("Super App"));