Index: trunk/phase3/maintenance/tests/phpunit/bootstrap.php |
— | — | @@ -44,12 +44,11 @@ |
45 | 45 | |
46 | 46 | function __call( $func, $args ) { |
47 | 47 | if ( method_exists( $this->suite, $func ) ) { |
48 | | - return call_user_func_array( array( $tohis->suite, $func ), $args); |
| 48 | + return call_user_func_array( array( $this->suite, $func ), $args); |
49 | 49 | } else { |
50 | 50 | throw new MWException( "Called non-existant $func method on " |
51 | 51 | . get_class( $this ) ); |
52 | 52 | } |
53 | | - return false; |
54 | 53 | } |
55 | 54 | } |
56 | 55 | |