Skip to content

Commit

Permalink
Fix wrong string comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
ktomk committed Dec 23, 2016
1 parent 441f45a commit 80c2b90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/N98/Magento/Command/Database/DumpCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public function testIncludeExcludeMutualExclusivity()
*/
$command = $this->getCommand();
$this->getApplication()->initMagento();
$this->setExpectedException('InvalidArgumentException', 'Cannot specify both include and exclude parameters.');
$this->setExpectedException('InvalidArgumentException', 'Cannot specify --include with --exclude');

$commandTester = new CommandTester($command);
$commandTester->execute(
Expand Down

0 comments on commit 80c2b90

Please sign in to comment.