From e7582cb6d9dc7a95eb60d5de933518a6e0d8c13b Mon Sep 17 00:00:00 2001 From: Shish Date: Wed, 19 Aug 2009 05:04:09 +0100 Subject: [PATCH] sometimes these return values are used --- contrib/simpletest/main.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/simpletest/main.php b/contrib/simpletest/main.php index 7da534f5..b2545935 100644 --- a/contrib/simpletest/main.php +++ b/contrib/simpletest/main.php @@ -88,14 +88,14 @@ class SCoreWebTestCase extends WebTestCase { * Click on a link or a button */ public function click($text) { - parent::click($text); + return parent::click($text); } /** * Click the virtual browser's back button */ public function back() { - parent::back(); + return parent::back(); } /**