Fixed test

This commit is contained in:
gabime 2017-12-01 03:45:29 +02:00
parent 3c4a2bf531
commit 84e307521d
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ TEST_CASE("file_helper_split_by_extenstion7", "[file_helper::split_by_extenstion
auto expected_basename = "folder\\.mylog";
#else
auto filename = "folder/.mylog.txt";
auto expected_basename = "folder//.mylog";
auto expected_basename = "folder/.mylog";
#endif
std::string basename, ext;
std::tie(basename, ext) = file_helper::split_by_extenstion(filename);