From b14ebb791bdebf40f8659fd56eb1df8f1dae62e5 Mon Sep 17 00:00:00 2001 From: amai2012 Date: Tue, 26 Aug 2014 12:19:58 +0200 Subject: [PATCH] #5780 - Correct unit test which was calling wrong ASSERT --- test/testtokenize.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testtokenize.cpp b/test/testtokenize.cpp index ae4cfe188..5580a358b 100644 --- a/test/testtokenize.cpp +++ b/test/testtokenize.cpp @@ -912,7 +912,7 @@ private: "void z() {\n" " vector VI;\n" "}\n"; - //ASSERT_EQUALS(code, tokenizeAndStringify(code)); + ASSERT_THROW(tokenizeAndStringify(code, true), InternalError); } void wrong_syntax1() {