Fix subway_converter_tests build.

This commit is contained in:
tatiana-yan 2020-07-13 11:20:25 +03:00 committed by Olga Khlopkova
parent 50de881e1f
commit 0864de1350

View file

@ -23,7 +23,7 @@ void WriteStringToFile(std::string const & fileName, std::string const & data)
{
std::ofstream file;
file.open(fileName);
CHECK(file.is_open(), "Could not open file", fileName);
CHECK(file.is_open(), ("Could not open file", fileName));
file << data;
}
} // namespace