Fix capture of corpus descriptions in integration tests
This commit is contained in:
parent
fd77bf49a3
commit
07fa3eb386
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ static vector<TestEntry> 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())
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue