[skip ci] Fix line method

This commit is contained in:
ado
2024-02-25 02:57:46 +01:00
parent 88e711a5f7
commit 05f87bc78b
3 changed files with 10 additions and 12 deletions

View File

@@ -78,8 +78,8 @@ struct unique_file_name {
unique_file_name(const std::string& test) {
do {
name = "random_" + test + "_" + std::to_string(i++) + "_" +
time_now_rand() + "_file.csv";
name = "random_file_test_" + test + "_" + std::to_string(i++) +
"_" + time_now_rand() + "_file.csv";
} while (std::filesystem::exists(name));
}