1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-01-18 21:23:02 +00:00

Adapt to new API

This commit is contained in:
Carles Fernandez 2024-07-26 18:20:24 +02:00
parent ec127089ab
commit 6cfc8a351f
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
2 changed files with 2 additions and 2 deletions

View File

@ -84,7 +84,7 @@ TEST(GnssCryptoTest, VerifyPublicKeyStorage)
ASSERT_TRUE(result);
auto d_crypto2 = std::make_unique<Gnss_Crypto>(f1, "");
auto d_crypto2 = std::make_unique<Gnss_Crypto>(f1, "", "");
bool result2 = d_crypto2->store_public_key(f2);
ASSERT_TRUE(result2);

View File

@ -51,7 +51,7 @@ protected:
// std::tm input_time = {0, 0, 5, 16, 8 - 1, 2023 - 1900, 0}; // conf. 1
std::tm input_time = {0, 0, 0, 27, 7 - 1, 2023 - 1900, 0}; // conf. 2
set_time(input_time);
osnma = osnma_msg_receiver_make("", "");
osnma = osnma_msg_receiver_make("", "", "");
}
};