Merge "HTMLForm: Clean up 0 handling"
[lhc/web/wiklou.git] / tests / parser / ParserTestResult.php
index e846da5..d9ad773 100644 (file)
@@ -37,6 +37,6 @@ class ParserTestResult {
 
        /** Whether the test passed */
        public function isSuccess() {
-               return ($this->expected === $this->actual);
+               return $this->expected === $this->actual;
        }
 }