From 2910545aaa747c4958571e31bd0efd36c0c3db0e Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Tue, 16 Nov 2010 16:02:48 +0000 Subject: [PATCH] Fix copy+paste error from r76798 --- maintenance/tests/phpunit/includes/LicensesTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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' ) ); } } -- 2.20.1