summaryrefslogtreecommitdiffstats
path: root/tests/auto/installer/mkdiroperationtest/tst_mkdiroperationtest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/installer/mkdiroperationtest/tst_mkdiroperationtest.cpp')
-rw-r--r--tests/auto/installer/mkdiroperationtest/tst_mkdiroperationtest.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/auto/installer/mkdiroperationtest/tst_mkdiroperationtest.cpp b/tests/auto/installer/mkdiroperationtest/tst_mkdiroperationtest.cpp
index b18cae3a0..f52c27d0f 100644
--- a/tests/auto/installer/mkdiroperationtest/tst_mkdiroperationtest.cpp
+++ b/tests/auto/installer/mkdiroperationtest/tst_mkdiroperationtest.cpp
@@ -27,7 +27,7 @@
**************************************************************************/
#include "init.h"
-#include "kdupdaterupdateoperations.h"
+#include "updateoperations.h"
#include <QDir>
#include <QObject>
@@ -60,7 +60,8 @@ private slots:
QVERIFY(!op.performOperation());
QCOMPARE(UpdateOperation::Error(op.error()), UpdateOperation::InvalidArguments);
- QCOMPARE(op.errorString(), QString("Invalid arguments: 0 arguments given, 1 expected."));
+ QCOMPARE(op.errorString(), QString("Invalid arguments in Mkdir: "
+ "0 arguments given, exactly 1 arguments expected."));
}
@@ -116,7 +117,7 @@ private slots:
file.close();
QVERIFY2(!op.undoOperation(), op.errorString().toLatin1());
QVERIFY2(file.exists(), filepath.toLatin1());
- QVERIFY2(QDir(filepath).remove(filepath), "Could not remove file");
+ QVERIFY2(QDir(filepath).remove(filepath), "Cannot remove file");
QVERIFY2(!file.exists(), filepath.toLatin1());
QVERIFY2(op.undoOperation(), op.errorString().toLatin1());
QVERIFY2(!QDir(path).exists(), path.toLatin1());