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)); } }