diff options
author | Johnny Richard <johnny@johnnyrichard.com> | 2023-04-20 18:26:05 +0200 |
---|---|---|
committer | Carlos Maniero <carlosmaniero@gmail.com> | 2023-04-20 13:53:10 -0300 |
commit | 58da5195ef7d517f851ebfabfe79cfa27c0b2dde (patch) | |
tree | ee0fae0a542543ed7757881a0a83b6636bf516f8 /test/parser_test.c | |
parent | a7c6c350509b2544f1d423ca1ebcd5daeda5cb58 (diff) |
parser: Fix test name from lexer_test to parser
Signed-off-by: Johnny Richard <johnny@johnnyrichard.com>
Diffstat (limited to 'test/parser_test.c')
-rw-r--r-- | test/parser_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/parser_test.c b/test/parser_test.c index d0d36ca..d1b8881 100644 --- a/test/parser_test.c +++ b/test/parser_test.c @@ -104,7 +104,7 @@ static MunitTest tests[] = { }; static const MunitSuite suite = { - "/lexer_test", tests, NULL, 1, MUNIT_SUITE_OPTION_NONE + "/parser", tests, NULL, 1, MUNIT_SUITE_OPTION_NONE }; int |