From 07fa3eb3864cd49815a8d7dff9d665856640f955 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Fri, 2 Mar 2018 11:27:36 -0800 Subject: [PATCH] Fix capture of corpus descriptions in integration tests --- test/helpers/read_test_entries.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/helpers/read_test_entries.cc b/test/helpers/read_test_entries.cc index f5fc5a84..fdeb99f7 100644 --- a/test/helpers/read_test_entries.cc +++ b/test/helpers/read_test_entries.cc @@ -33,7 +33,7 @@ static vector parse_test_entries(string content) { if (!regex_search(content, matches, header_pattern) || matches.empty()) break; - string description = matches[1].str(); + string description = matches[2].str(); descriptions.push_back(description); if (!bodies.empty())