Skip to content

Commit 369a87e

Browse files
committed
Add test for converting '\$' to '$' in the lexer.
1 parent 152ab59 commit 369a87e

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

llvm/utils/lit/tests/unit/ShUtil.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ def test_quoting(self):
2929
self.assertEqual(self.lex(""" "" "" """), ["", ""])
3030
self.assertEqual(self.lex(""" a\\ b """, win32Escapes=True), ["a\\", "b"])
3131

32-
3332
class TestShParse(unittest.TestCase):
3433
def parse(self, str):
3534
return ShParser(str).parse()

0 commit comments

Comments
 (0)