Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2d9a84b

Browse files
committed
typo first->second
1 parent f4c1a3a commit 2d9a84b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/Console/Tests/ApplicationTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public function testConstructor()
6363
{
6464
$application = new Application('foo', 'bar');
6565
$this->assertEquals('foo', $application->getName(), '__construct() takes the application name as its first argument');
66-
$this->assertEquals('bar', $application->getVersion(), '__construct() takes the application version as its first argument');
66+
$this->assertEquals('bar', $application->getVersion(), '__construct() takes the application version as its second argument');
6767
$this->assertEquals(array('help', 'list'), array_keys($application->all()), '__construct() registered the help and list commands by default');
6868
}
6969

0 commit comments

Comments
 (0)