[ci] try to handle tests more correctly

This commit is contained in:
Ivan Baidakou
2025-12-28 23:29:51 +03:00
parent 8d9bc6c88e
commit ce7674df83
+2 -1
View File
@@ -61,7 +61,8 @@ TEST_CASE("file sink", "[log]") {
auto dir = bfs::absolute(bfs::current_path() / st::unique_path());
auto path_guard = st::path_guard_t(dir);
bfs::create_directories(dir);
auto log_file = dir / L"папка" / L"журнал.txt";
auto log_file = dir / u8"папка" / u8"журнал.txt";
INFO("log_file = " << log_file);
auto log_file_str = boost::nowide::narrow(log_file.wstring());
auto sink_config = fmt::format("file:{}", log_file_str);