Jens-G commented on code in PR #2932:
URL: https://github.com/apache/thrift/pull/2932#discussion_r1497053458


##########
lib/php/test/Unit/BaseValidatorTest.php:
##########
@@ -114,27 +120,35 @@ protected static function assertHasReadValidator($class)
     {
         if (!static::hasReadValidator($class)) {
             static::fail($class . ' class should have a read validator');
+        } else {
+            static::assertTrue(true);
         }
     }
 
     protected static function assertNoReadValidator($class)
     {
         if (static::hasReadValidator($class)) {
             static::fail($class . ' class should not have a write validator');
+        } else {
+            static::assertTrue(true);
         }

Review Comment:
   What's the value of this? A check that is known to always succeed?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to