Fix testrunner

This commit is contained in:
Daniel Marjamäki 2020-05-25 16:02:34 +02:00
parent f7f26ffe90
commit 9edca82138
1 changed files with 1 additions and 1 deletions

View File

@ -2615,7 +2615,7 @@ private:
" if (not x) {}\n" " if (not x) {}\n"
"}"; "}";
const char exp1[] = "1: void foo ( int x@1 ) const {\n" const char exp1[] = "1: void foo ( int x@1 ) const {\n"
"2: if ( not x@1 ) { }\n" "2: if ( ! x@1 ) { }\n"
"3: }\n"; "3: }\n";
ASSERT_EQUALS(exp1, tokenize(code1)); ASSERT_EQUALS(exp1, tokenize(code1));
} }