From aae41833b0fcd8bf7a605a476ee66f594aa4e926 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Tue, 14 Dec 2010 09:05:51 +0000 Subject: [PATCH] Fixed comment --- Test/ConditionTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Test/ConditionTests.cpp b/Test/ConditionTests.cpp index 6200f862..5f8ce7f6 100644 --- a/Test/ConditionTests.cpp +++ b/Test/ConditionTests.cpp @@ -155,7 +155,7 @@ TEST_CASE( "failing/conditions/ordered", "Ordering comparison checks that should // Not (!) tests // The problem with the ! operator is that it has right-to-left associativity. -// This means we can't isolate it when we decompose. The simple CHECK( !false ) form, therefore, +// This means we can't isolate it when we decompose. The simple REQUIRE( !false ) form, therefore, // cannot have the operand value extracted. The test will work correctly, and the situation // is detected and a warning issued. // An alternative form of the macros (CHECK_FALSE and REQUIRE_FALSE) can be used instead to capture