Fixed hanging, failing unit tests (#472)

This commit is contained in:
Steven Schulte 2019-07-09 16:05:44 -04:00 коммит произвёл wes-b
Родитель 5065d3fd70
Коммит dbe6c58897
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -80,7 +80,7 @@ static void test_stream_against_regexes(std::istream *input_stream, const std::v
{
auto regex_iter = regexes->cbegin();
// ensure that all regexes are matched before the end of the file, in this order
while (input_stream && regex_iter != regexes->cend())
while (*input_stream && regex_iter != regexes->cend())
{
std::string results;
getline(*input_stream, results);