From 60238ebce89822ea3a57d62f9923734a2a2c7bd1 Mon Sep 17 00:00:00 2001 From: LE GARREC Vincent Date: Tue, 21 May 2024 07:38:13 +0200 Subject: [PATCH] Fix duplicated testcase name And fix CarrotClass_TestCase --- test/test_CppHeaderParser.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/test/test_CppHeaderParser.py b/test/test_CppHeaderParser.py index a7810a7..5714e6c 100644 --- a/test/test_CppHeaderParser.py +++ b/test/test_CppHeaderParser.py @@ -1162,14 +1162,9 @@ def test_method_params(self): [], ) - def test_class_template(self): - self.assertEqual( - self.cppHeader.classes["CarrotClass"]["template"], "template" - ) - # Bug 3517289 -class CarrotClass_TestCase(unittest.TestCase): +class ExternClass_TestCase(unittest.TestCase): def setUp(self): self.cppHeader = CppHeaderParser.CppHeader("TestSampleClass.h")