Skip to content

Commit

Permalink
Update test_c_parser.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Llewyllen authored Jul 3, 2024
1 parent 33b9c49 commit aa2c84f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_c_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1709,7 +1709,7 @@ def test_unified_string_literals(self):
self.assertEqual(d6, ['Constant', 'string', r'"\1""23"'])

d7 = self.get_decl_init(r'char* s = "\07" "7";')
self.assertNotEqual(d7, ['Constant', 'string', r'"\07""7"'])
self.assertEqual(d7, ['Constant', 'string', r'"\07""7"'])

def test_unified_wstring_literals(self):
d1 = self.get_decl_init('char* s = L"hello" L"world";')
Expand Down

0 comments on commit aa2c84f

Please sign in to comment.