summaryrefslogtreecommitdiffstats
path: root/tests/auto/installer/extractarchiveoperationtest/tst_extractarchiveoperationtest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/installer/extractarchiveoperationtest/tst_extractarchiveoperationtest.cpp')
-rw-r--r--tests/auto/installer/extractarchiveoperationtest/tst_extractarchiveoperationtest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/installer/extractarchiveoperationtest/tst_extractarchiveoperationtest.cpp b/tests/auto/installer/extractarchiveoperationtest/tst_extractarchiveoperationtest.cpp
index 40af0d497..a5f38e0ea 100644
--- a/tests/auto/installer/extractarchiveoperationtest/tst_extractarchiveoperationtest.cpp
+++ b/tests/auto/installer/extractarchiveoperationtest/tst_extractarchiveoperationtest.cpp
@@ -48,7 +48,7 @@ private slots:
void testMissingArguments()
{
- ExtractArchiveOperation op(0);
+ ExtractArchiveOperation op(nullptr);
QVERIFY(op.testOperation());
QVERIFY(!op.performOperation());
@@ -62,7 +62,7 @@ private slots:
void testExtractOperationValidFile()
{
- ExtractArchiveOperation op(0);
+ ExtractArchiveOperation op(nullptr);
op.setArguments(QStringList() << ":///data/valid.7z" << QDir::tempPath());
QVERIFY(op.testOperation());
@@ -72,7 +72,7 @@ private slots:
void testExtractOperationInvalidFile()
{
- ExtractArchiveOperation op(0);
+ ExtractArchiveOperation op(nullptr);
op.setArguments(QStringList() << ":///data/invalid.7z" << QDir::tempPath());
QVERIFY(op.testOperation());