Fix error message when unmatched quotes are encountered by CAPTURE

Thanks to @ledvinap for noticing
This commit is contained in:
Martin Hořeňovský 2019-05-23 13:51:33 +02:00
parent 31537c43d9
commit 99602787cd
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ namespace Catch {
if (names[i] == '\\')
++i;
}
CATCH_INTERNAL_ERROR("CAPTURE parsing encountered unmatched parentheses");
CATCH_INTERNAL_ERROR("CAPTURE parsing encountered unmatched quote");
};
size_t start = 0;