From 2c1e4c437e7aa397624b293017d02dde7dd41070 Mon Sep 17 00:00:00 2001 From: Jeremy Maitin-Shepard Date: Fri, 11 Mar 2022 05:02:59 -0800 Subject: [PATCH] Update tests/test_domain_cpp.py Co-authored-by: Jakob Lykke Andersen --- tests/test_domain_cpp.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index e3dba78ba..96f03d611 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -998,8 +998,7 @@ def test_domain_cpp_ast_attributes(): # position: class check('class', '{key}[[nodiscard]] Foo', {1: 'Foo', 2: '3Foo'}, key='class') - check('union', '{key}[[nodiscard]] Foo', {1: None, 2: '3Foo', 3: '3Foo', 4: '3Foo'}, - key='union') + check('union', '{key}[[nodiscard]] Foo', {1: None, 2: '3Foo'}, key='union') # position: enum check('enum', '{key}[[nodiscard]] Foo', {1: None, 2: '3Foo', 3: '3Foo', 4: '3Foo'}, key='enum')