summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAnne Jan Brouwer <brouwer@annejan.com>2018-01-22 13:55:16 +0100
committerAnne Jan Brouwer <brouwer@annejan.com>2018-01-22 13:55:16 +0100
commit2c7fccaf99a6c1e70944f058060ac5bd29e2680e (patch)
tree15c37b1e50c88e3ce623798fac86fd2d2f836dae /tests
parent44d1d0ffdf6f57d1e32d5de0ec9d9111dd354efa (diff)
Change dependencies (main depends on src, tests depend on main) fixes #350 als some minor automated housekeeping.
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/util/tst_util.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/auto/util/tst_util.cpp b/tests/auto/util/tst_util.cpp
index dbc65750..bd1ba906 100644
--- a/tests/auto/util/tst_util.cpp
+++ b/tests/auto/util/tst_util.cpp
@@ -57,8 +57,10 @@ void tst_util::cleanupTestCase() {}
* of Util::normalizeFolderPath the paths should always end with a slash
*/
void tst_util::normalizeFolderPath() {
- QCOMPARE(Util::normalizeFolderPath("test"), QDir::toNativeSeparators("test/"));
- QCOMPARE(Util::normalizeFolderPath("test/"), QDir::toNativeSeparators("test/"));
+ QCOMPARE(Util::normalizeFolderPath("test"),
+ QDir::toNativeSeparators("test/"));
+ QCOMPARE(Util::normalizeFolderPath("test/"),
+ QDir::toNativeSeparators("test/"));
}
QTEST_MAIN(tst_util)