From 5e78dae143899f7db5228dc9557295d4e7cdcf36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Tue, 2 Aug 2016 19:38:36 +0200 Subject: [PATCH] Use TODO_ASSERT_EQUALS instead of TODO comments --- test/testvarid.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/testvarid.cpp b/test/testvarid.cpp index d64a4b49b..8f9958a9d 100644 --- a/test/testvarid.cpp +++ b/test/testvarid.cpp @@ -2030,10 +2030,10 @@ private: void varid_templateUsing() { // #5781 #7273 const char code[] = "template using X = Y;\n" "X x;"; - - ASSERT_EQUALS("1: template < class T > using X ; X = Y < T > ;\n" // TODO: "1: \n" - "2: X < int > x@1 ;\n", // TODO: "2: Y x@1 ;" - tokenize(code)); + TODO_ASSERT_EQUALS("\nY x@1;\n", + "1: template < class T > using X ; X = Y < T > ;\n" + "2: X < int > x@1 ;\n", + tokenize(code)); } void varid_cppcast() {