store: removing trailing / for root_maildir

Other code depends on that.
This commit is contained in:
Dirk-Jan C. Binnema
2023-07-06 21:33:01 +03:00
parent 75a2cab3f1
commit 4171fe14c3
2 changed files with 16 additions and 4 deletions

View File

@ -42,7 +42,9 @@ static Store
make_test_store(const std::string& test_path, const TestMap& test_map,
const StringVec &personal_addresses)
{
std::string maildir = test_path + "/Maildir";
std::string maildir = test_path + "/Maildir/";
// note the trailing '/'
g_test_bug("2513");
/* write messages to disk */
for (auto&& item: test_map) {