Skip to content

Commit c13a0b9

Browse files
committed
Compare against the right xml generator name in test
1 parent b461a6c commit c13a0b9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

unittests/test_va_list_tag_removal.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __init__(self, *args):
2828

2929
def test_keep_va_list_tag(self):
3030

31-
if "GCCXML" in self.config.xml_generator:
31+
if "gccxml" in self.config.xml_generator:
3232
return True
3333

3434
self.config.flags = ["f1"]
@@ -59,7 +59,7 @@ def test_keep_va_list_tag(self):
5959

6060
def test_remove_va_list_tag(self):
6161

62-
if "GCCXML" in self.config.xml_generator:
62+
if "gccxml" in self.config.xml_generator:
6363
return True
6464

6565
self.config.flags = []

0 commit comments

Comments
 (0)