Fixed problem in unit test.

This commit is contained in:
yhirose 2015-02-18 19:36:27 -05:00
parent 9c872e2d5d
commit 6cc1534257

View File

@ -151,7 +151,7 @@ TEST_CASE("Skip token test", "[general]")
{
peglib::peg parser(
" ROOT <- _ ITEM (',' _ ITEM _)* "
" ITEM <- ([a-z])+ "
" ITEM <- ([a-z0-9])+ "
" ~_ <- [ \t]* "
);