From 6506b2c016abd6504977597862ac4daec4822986 Mon Sep 17 00:00:00 2001 From: Edoardo Prezioso Date: Sun, 11 Dec 2011 20:36:56 +0100 Subject: [PATCH] Oops. Fix testrunner fail. --- test/testtokenize.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testtokenize.cpp b/test/testtokenize.cpp index e1f5797be..62f9c7a2a 100644 --- a/test/testtokenize.cpp +++ b/test/testtokenize.cpp @@ -5991,7 +5991,7 @@ private: const char code[] = "void f() { " "(void) ( { if(*p) (*p) = x(); } ) " "}"; - ASSERT_EQUALS("void f ( ) { ( void ) ( { if ( * p ) { ( * p ) = x ( ) ; } } ) }", + ASSERT_EQUALS("void f ( ) { ( void ) ( { if ( * p ) ( * p ) = x ( ) ; } ) }", tokenizeAndStringify(code)); } }