diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-02-18 14:18:14 +0100 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-02-18 14:18:14 +0100 |
commit | 4f4c04c53ea27777e8cf4ecab690985ad3f78e1f (patch) | |
tree | ab18c914e5fe7df107ee1b71f6270a7afe26c320 | |
parent | 0a1b8b9f38ddadb32d54884a05f0e7246d7c25e7 (diff) | |
download | libquotient-4f4c04c53ea27777e8cf4ecab690985ad3f78e1f.tar.gz libquotient-4f4c04c53ea27777e8cf4ecab690985ad3f78e1f.zip |
testgroupsession.*: fix TestOlmSession copy-pasta
-rw-r--r-- | autotests/testgroupsession.cpp | 6 | ||||
-rw-r--r-- | autotests/testgroupsession.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/autotests/testgroupsession.cpp b/autotests/testgroupsession.cpp index 2b949578..2566669e 100644 --- a/autotests/testgroupsession.cpp +++ b/autotests/testgroupsession.cpp @@ -9,7 +9,7 @@ using namespace Quotient; -void TestOlmSession::groupSessionPicklingValid() +void TestGroupSession::groupSessionPicklingValid() { auto ogs = QOlmOutboundGroupSession::create(); const auto ogsId = ogs->sessionId(); @@ -33,7 +33,7 @@ void TestOlmSession::groupSessionPicklingValid() QCOMPARE(igsId, igs->sessionId()); } -void TestOlmSession::groupSessionCryptoValid() +void TestGroupSession::groupSessionCryptoValid() { auto ogs = QOlmOutboundGroupSession::create(); auto igs = QOlmInboundGroupSession::create(std::get<QByteArray>(ogs->sessionKey())); @@ -51,4 +51,4 @@ void TestOlmSession::groupSessionCryptoValid() QCOMPARE(0, decryptionResult.second); } -QTEST_GUILESS_MAIN(TestOlmSession) +QTEST_GUILESS_MAIN(TestGroupSession) diff --git a/autotests/testgroupsession.h b/autotests/testgroupsession.h index 7743295f..6edf0d16 100644 --- a/autotests/testgroupsession.h +++ b/autotests/testgroupsession.h @@ -4,7 +4,7 @@ #include <QTest> -class TestOlmSession : public QObject +class TestGroupSession : public QObject { Q_OBJECT |