From 77b8e496d6b812d6429388c0536055a2b5a124e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Tue, 7 Aug 2012 16:42:11 +0200 Subject: [PATCH] fixed testrunner assertion --- test/testsimplifytokens.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testsimplifytokens.cpp b/test/testsimplifytokens.cpp index aea49fc8a..ce0c5616f 100644 --- a/test/testsimplifytokens.cpp +++ b/test/testsimplifytokens.cpp @@ -5719,7 +5719,7 @@ private: void simplifyTypedef107() { // ticket #3963 (bad code => segmentation fault) const char code[] = "typedef int x[]; int main() { return x }"; tok(code); - ASSERT_EQUALS("", errout.str()); + ASSERT_EQUALS("[test.cpp:1]: (error) syntax error\n", errout.str()); } void simplifyTypedefFunction1() {