Skip to content
Snippets Groups Projects
Commit c54e320d authored by Sergey Yakubov's avatar Sergey Yakubov
Browse files

fix windows tests

parent 0840159d
Branches
Tags
No related merge requests found
......@@ -2,6 +2,8 @@
#include "json_parser/json_parser.h"
#include "preprocessor/definitions.h"
#include <iostream>
namespace asapo {
......@@ -56,7 +58,7 @@ bool FileInfo::SetFromJson(const std::string& json_string) {
std::string FileInfo::FullName(const std::string& base_path) const {
std::string full_name;
full_name = base_path.empty() ? "" : base_path + "/";
full_name = base_path.empty() ? "" : base_path + kPathSeparator;
return full_name + name;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment