From ea0781cc4b097ccf588a44d26d9382ab206ce1aa Mon Sep 17 00:00:00 2001 From: "SND\\EreTIk_cp" Date: Tue, 12 Jan 2016 15:21:35 +0000 Subject: [PATCH] [0.3.x] fix: workitem 13815 test (TypeInfoTest.testFunctionArgs) git-svn-id: https://pykd.svn.codeplex.com/svn@90905 9b283d60-5439-405e-af05-b73fd8c4d996 --- test/scripts/typeinfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/scripts/typeinfo.py b/test/scripts/typeinfo.py index e36a5cb..2379d0e 100644 --- a/test/scripts/typeinfo.py +++ b/test/scripts/typeinfo.py @@ -265,7 +265,7 @@ class TypeInfoTest( unittest.TestCase ): self.assertEqual( [ arg.name() for arg in functype ], ["Int4B", "Float"] ) functype = target.module.typedVar( "g_variadicFuncPtr" ).type().deref() - self.assertEqual( [ arg.name() for arg in functype ], ["Int4B", "..."] ) + self.assertEqual( [ arg.name() for arg in functype ], ["Int4B", "NoType"] ) def testFunctionCallConv(self): functype = target.module.typedVar( "CdeclFuncPtr" ).type().deref()