From 9edca82138d04e3a71d4215747d6ec805dc8921c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Mon, 25 May 2020 16:02:34 +0200 Subject: [PATCH] Fix testrunner --- test/testvarid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testvarid.cpp b/test/testvarid.cpp index 14fe3f6fa..c68c50fa1 100644 --- a/test/testvarid.cpp +++ b/test/testvarid.cpp @@ -2615,7 +2615,7 @@ private: " if (not x) {}\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"; ASSERT_EQUALS(exp1, tokenize(code1)); }