mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-22 06:28:52 -04:00
Fix warnings about Crypto already having been initialized
This commit is contained in:
parent
9a94c6d85e
commit
a001553c5e
1 changed files with 3 additions and 3 deletions
|
@ -30,6 +30,9 @@ void TestYubiKeyChalResp::initTestCase()
|
||||||
{
|
{
|
||||||
m_detected = 0;
|
m_detected = 0;
|
||||||
m_key = NULL;
|
m_key = NULL;
|
||||||
|
|
||||||
|
// crypto subsystem needs to be initialized for YubiKey testing
|
||||||
|
QVERIFY(Crypto::init());
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestYubiKeyChalResp::cleanupTestCase()
|
void TestYubiKeyChalResp::cleanupTestCase()
|
||||||
|
@ -45,9 +48,6 @@ void TestYubiKeyChalResp::init()
|
||||||
if (!result) {
|
if (!result) {
|
||||||
QSKIP("Unable to connect to YubiKey", SkipAll);
|
QSKIP("Unable to connect to YubiKey", SkipAll);
|
||||||
}
|
}
|
||||||
|
|
||||||
// crypto subsystem needs to be initialized for YubiKey testing
|
|
||||||
QVERIFY(Crypto::init());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void TestYubiKeyChalResp::detectDevices()
|
void TestYubiKeyChalResp::detectDevices()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue