summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Pesavento <pesa@gentoo.org>2015-10-18 02:43:59 +0200
committerOrgad Shaneh <orgads@gmail.com>2015-10-19 09:00:31 +0000
commitd3583883a8b36fc32a26941a5b9bd747fb6776ae (patch)
treefc185bb1b2fd74ca15e2d8c56e53ab5a8905305e
parent5f0e4e4f76dc6a97a96d83f59bce95dbe6c5e14e (diff)
downloadqt-creator-d3583883a8b36fc32a26941a5b9bd747fb6776ae.tar.gz
Tests: add missing column to tst_fileutils::parentDir testcase
The third column was accidentally removed from one data row in commit 271794fbc9cbeaa3393808691742893602de6cf5 Fixes the following fatal error: QFETCH: Requested testdata 'expectFailMessage' not available, check your _data function. Change-Id: I4a09df2e044b4dcee1ed2ffc589082a3e2601232 Reviewed-by: Orgad Shaneh <orgads@gmail.com> Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
-rw-r--r--tests/auto/utils/fileutils/tst_fileutils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/utils/fileutils/tst_fileutils.cpp b/tests/auto/utils/fileutils/tst_fileutils.cpp
index dd02f572e0..0b1e5022ea 100644
--- a/tests/auto/utils/fileutils/tst_fileutils.cpp
+++ b/tests/auto/utils/fileutils/tst_fileutils.cpp
@@ -62,7 +62,7 @@ void tst_fileutils::parentDir_data()
QTest::newRow("//") << "//" << "" << "";
QTest::newRow("/tmp/dir") << "/tmp/dir" << "/tmp" << "";
QTest::newRow("relative/path") << "relative/path" << "relative" << "";
- QTest::newRow("relativepath") << "relativepath" << ".";
+ QTest::newRow("relativepath") << "relativepath" << "." << "";
// Windows stuff:
#ifdef Q_OS_WIN