mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-06-14 03:25:25 -04:00
[EGD-3649] Fix paths in UT
Reorganization of assets left path in UT outdated.
This commit is contained in:
committed by
Wiktor S. Ovalle Correa
parent
9ae8d0f156
commit
10a2c37969
@@ -39,8 +39,8 @@ TEST_CASE("Query interface")
|
||||
{
|
||||
Database::initialize();
|
||||
|
||||
auto contactsDB = std::make_unique<ContactsDB>((std::filesystem::path{"user"} / "contacts.db").c_str());
|
||||
auto smsDB = std::make_unique<SmsDB>((std::filesystem::path{"user"} / "sms.db").c_str());
|
||||
auto contactsDB = std::make_unique<ContactsDB>((std::filesystem::path{"sys/user"} / "contacts.db").c_str());
|
||||
auto smsDB = std::make_unique<SmsDB>((std::filesystem::path{"sys/user"} / "sms.db").c_str());
|
||||
auto smsInterface = std::make_unique<SMSRecordInterface>(smsDB.get(), contactsDB.get());
|
||||
auto threadInterface = std::make_unique<ThreadRecordInterface>(smsDB.get(), contactsDB.get());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user