diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-06-01 08:05:21 +0200 |
---|---|---|
committer | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2022-06-01 08:05:21 +0200 |
commit | cd442611b19ec4a438d0847bf09b7bca99b494d3 (patch) | |
tree | a4f31a647f5aa30164643f02be2e36f0ef715b6b /autotests | |
parent | ec75d2d0e9601dcf32387120ca67135ac7e7f472 (diff) | |
download | libquotient-cd442611b19ec4a438d0847bf09b7bca99b494d3.tar.gz libquotient-cd442611b19ec4a438d0847bf09b7bca99b494d3.zip |
Fix FTBFS after the merge
Diffstat (limited to 'autotests')
-rw-r--r-- | autotests/testolmaccount.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autotests/testolmaccount.cpp b/autotests/testolmaccount.cpp index 60f4ab38..4b32393d 100644 --- a/autotests/testolmaccount.cpp +++ b/autotests/testolmaccount.cpp @@ -404,7 +404,7 @@ void TestOlmAccount::claimKeys() claimKeysJob->oneTimeKeys().value(userId).value(deviceId); for (auto it = oneTimeKeys.begin(); it != oneTimeKeys.end(); ++it) { if (it.key().startsWith(SignedCurve25519Key) - && it.value().isObject()) + && std::holds_alternative<SignedOneTimeKey>(it.value())) return; } QFAIL("The claimed one time key is not in /claim response"); |