From cb6ed0555ca25e548817f07822a6286288c85f33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Wed, 14 Mar 2018 11:11:35 +0100 Subject: [PATCH] Fix testrunner --- test/testsimplifytypedef.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/testsimplifytypedef.cpp b/test/testsimplifytypedef.cpp index 4ce1c21f2..6f0885134 100644 --- a/test/testsimplifytypedef.cpp +++ b/test/testsimplifytypedef.cpp @@ -432,13 +432,13 @@ private: const char expected[] = "union t { int a ; float b ; } ; " "union U { int a ; float b ; } ; " - "union Unnamed1 { int a ; float b ; } ; " + "union Unnamed0 { int a ; float b ; } ; " "union s s ; " "union s * ps ; " "union t t ; " "union t * tp ; " "union U u ; " - "union Unnamed1 * v ;"; + "union Unnamed0 * v ;"; ASSERT_EQUALS(expected, tok(code, false)); } @@ -594,10 +594,10 @@ private: "C c;"; const char expected[] = - "struct Unnamed2 { } ; " - "struct Unnamed2 * * * * * * * * * * a ; " - "struct Unnamed2 * b ; " - "struct Unnamed2 c ;"; + "struct Unnamed0 { } ; " + "struct Unnamed0 * * * * * * * * * * a ; " + "struct Unnamed0 * b ; " + "struct Unnamed0 c ;"; ASSERT_EQUALS(expected, tok(code, false)); }