diff options
author | Alexis Lockwood | 2021-07-03 20:13:43 -0400 |
---|---|---|
committer | Alexis Lockwood | 2021-07-03 20:13:43 -0400 |
commit | 5d3df0725b85abbb526c8635ce5fb8fd4c9404df (patch) | |
tree | 9cadda2b1ed6935742b9c794d6722ca121f241f8 | |
parent | 4e92293bb11ca7419b5e70a719c8a5154c2d3f5a (diff) |
Since 0x7F is now whitespace, don't check for error
-rw-r--r-- | test/test_internal.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/test_internal.c b/test/test_internal.c index 4bb8a3b..56d7265 100644 --- a/test/test_internal.c +++ b/test/test_internal.c @@ -85,9 +85,6 @@ DECLTEST(_ls_lex) dammit_assert_enum(tok, ==, LS_TOK_WORD); munit_assert_string_equal(ls._token.word, "_foo_"); - ls_test_setup(&ls, "\x7F"); - LS_EXPECT_ERR(ls, LS_SYNTAX_ERROR, ls_lex(&ls)); - return MUNIT_OK; } |