1
0
Fork 0

PHP 5.3 this/that compatibility

pull/3994/head
Nils Adermann 2015-05-05 20:32:05 +02:00
parent 63e96a41f8
commit 67f10c1601
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ class ComposerRepositoryTest extends TestCase
$that = $this;
$packages = $repo->loadRecursively(array('a'), function ($name, $stability) use ($that) {
$this->assertEquals('a', $name);
$that->assertEquals('a', $name);
return true;
});