mirror of
https://github.com/yhirose/cpp-peglib.git
synced 2024-12-22 11:55:30 +00:00
Fixed problem in unit test.
This commit is contained in:
parent
9c872e2d5d
commit
6cc1534257
@ -151,7 +151,7 @@ TEST_CASE("Skip token test", "[general]")
|
|||||||
{
|
{
|
||||||
peglib::peg parser(
|
peglib::peg parser(
|
||||||
" ROOT <- _ ITEM (',' _ ITEM _)* "
|
" ROOT <- _ ITEM (',' _ ITEM _)* "
|
||||||
" ITEM <- ([a-z])+ "
|
" ITEM <- ([a-z0-9])+ "
|
||||||
" ~_ <- [ \t]* "
|
" ~_ <- [ \t]* "
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user