[EGD-3649] Fix paths in UT

Reorganization of assets left path in UT outdated.
This commit is contained in:
Wiktor S. Ovalle Correa
2021-04-20 15:23:59 +02:00
committed by Wiktor S. Ovalle Correa
parent 9ae8d0f156
commit 10a2c37969
31 changed files with 72 additions and 58 deletions

View File

@@ -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());