summaryrefslogtreecommitdiffstats
path: root/tests/auto/installer
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/installer')
-rw-r--r--tests/auto/installer/clientserver/tst_clientserver.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/auto/installer/clientserver/tst_clientserver.cpp b/tests/auto/installer/clientserver/tst_clientserver.cpp
index e5be5a8a0..450c9ee8c 100644
--- a/tests/auto/installer/clientserver/tst_clientserver.cpp
+++ b/tests/auto/installer/clientserver/tst_clientserver.cpp
@@ -460,8 +460,7 @@ private slots:
}
QSignalSpy spy(&wrapper, SIGNAL(started()));
- QSignalSpy spy2(&wrapper, SIGNAL(finished(int)));
- QSignalSpy spy3(&wrapper, SIGNAL(finished(int, QProcess::ExitStatus)));
+ QSignalSpy spy2(&wrapper, SIGNAL(finished(int, QProcess::ExitStatus)));
#ifdef Q_OS_WIN
wrapper.start(fileName);
@@ -480,10 +479,6 @@ private slots:
QCOMPARE(spy2.count(), 1);
QList<QVariant> arguments = spy2.takeFirst();
QCOMPARE(arguments.first().toInt(), 0);
-
- QCOMPARE(spy3.count(), 1);
- arguments = spy3.takeFirst();
- QCOMPARE(arguments.first().toInt(), 0);
QCOMPARE(arguments.last().toInt(), int(QProcessWrapper::NormalExit));
QFile::remove(fileName);