1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 08:32:56 +00:00

PHP 5.3 this/that compatibility

This commit is contained in:
Nils Adermann 2015-05-05 20:32:05 +02:00
parent 63e96a41f8
commit 67f10c1601

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;
});