C, C++: fix typo in tests

This commit is contained in:
Jakob Lykke Andersen
2020-05-22 15:39:47 +02:00
parent 816c61a811
commit 07c74b5ff4
2 changed files with 2 additions and 2 deletions

View File

@@ -663,7 +663,7 @@ def test_operators():
check('function', 'void operator[]()', {1: "subscript-operator", 2: "ixv"})
class test_nested_name():
def test_nested_name():
check('class', '{key}::A', {1: "A", 2: "1A"})
check('class', '{key}::A::B', {1: "A::B", 2: "N1A1BE"})
check('function', 'void f(::A a)', {1: "f__A", 2: "1f1A"})