From: Chad Horohoe Date: Tue, 16 Nov 2010 16:02:48 +0000 (+0000) Subject: Fix copy+paste error from r76798 X-Git-Tag: 1.31.0-rc.0~33857 X-Git-Url: https://git.heureux-cyclage.org/?a=commitdiff_plain;h=2910545aaa747c4958571e31bd0efd36c0c3db0e;p=lhc%2Fweb%2Fwiklou.git Fix copy+paste error from r76798 --- diff --git a/maintenance/tests/phpunit/includes/LicensesTest.php b/maintenance/tests/phpunit/includes/LicensesTest.php index 36496a8cd8..0008a7772d 100644 --- a/maintenance/tests/phpunit/includes/LicensesTest.php +++ b/maintenance/tests/phpunit/includes/LicensesTest.php @@ -9,6 +9,6 @@ class LicensesTest extends PHPUnit_Framework_TestCase { "; $lc = new Licenses( array( 'licenses' => $str ) ); - $this->assertThat( $r, $this->isInstanceOf( 'Licenses' ) ); + $this->assertThat( $lc, $this->isInstanceOf( 'Licenses' ) ); } }