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

Skip to content

Commit 939f872

Browse files
committed
merged branch cordoval/patch-3 (PR #8363)
This PR was submitted for the master branch but it was merged into the 2.2 branch instead (closes #8363). Discussion ---------- typo first->second Commits ------- 2d9a84b typo first->second
2 parents 1a0b38a + 1b0f693 commit 939f872

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
@@ -57,7 +57,7 @@ public function testConstructor()
5757
{
5858
$application = new Application('foo', 'bar');
5959
$this->assertEquals('foo', $application->getName(), '__construct() takes the application name as its first argument');
60-
$this->assertEquals('bar', $application->getVersion(), '__construct() takes the application version as its first argument');
60+
$this->assertEquals('bar', $application->getVersion(), '__construct() takes the application version as its second argument');
6161
$this->assertEquals(array('help', 'list'), array_keys($application->all()), '__construct() registered the help and list commands by default');
6262
}
6363

0 commit comments

Comments
 (0)