1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Adjusted BasePackage::__toString()

This commit is contained in:
Jordi Boggiano 2011-05-22 09:08:30 +02:00
parent 27f02aba7d
commit b620405ab0
2 changed files with 2 additions and 2 deletions

View file

@ -24,6 +24,6 @@ class MemoryPackageTest extends \PHPUnit_Framework_TestCase
$this->assertEquals('1', $package->getVersion());
$this->assertEquals('beta', $package->getReleaseType());
$this->assertEquals('foo-beta-1', (string) $package);
$this->assertEquals('foo-1-beta', (string) $package);
}
}