From a324e390ae03bdee87e9b3cb8e662479ef220267 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Fischer?= Date: Thu, 7 Nov 2019 12:57:27 +0100 Subject: [PATCH] fix login test --- test/unitTests/UnitTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unitTests/UnitTest.cpp b/test/unitTests/UnitTest.cpp index 9212b2b..8ef2339 100644 --- a/test/unitTests/UnitTest.cpp +++ b/test/unitTests/UnitTest.cpp @@ -8,7 +8,7 @@ void UnitTest::initTestCase() void UnitTest::loginSuccessfully() { RequestManager testAccess; - QSignalSpy spy(&testAccess, &RequestManager::responseReady); + QSignalSpy spy(&testAccess, &RequestManager::successLogin); QVERIFY(spy.isValid()); testAccess.login(); spy.wait(timeout);