Fix regex in language test table reader
This commit is contained in:
parent
c40411b4d1
commit
0d3fe99ef9
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ static string trim_output(const string &input) {
|
|||
}
|
||||
|
||||
static vector<TestEntry> get_test_entries_from_string(string content) {
|
||||
regex header_pattern("===+\n([\\w ]+)\n===+");
|
||||
regex header_pattern("===+\n" "([^=]+)\n" "===+\n");
|
||||
regex separator_pattern("---+");
|
||||
|
||||
vector<string> descriptions;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue