Skip to content

Commit

Permalink
Fix subway_converter_tests build.
Browse files Browse the repository at this point in the history
  • Loading branch information
tatiana-yan authored and mesozoic-drones committed Jul 13, 2020
1 parent 50de881 commit 0864de1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0864de1

Please sign in to comment.