Merge pull request #16879 from jcfischer/jcf_fix_user_delete_message

Fix error message and add 'user' to it
This commit is contained in:
Lukas Reschke 2015-06-11 14:53:50 +02:00
commit dbe344ef3d
2 changed files with 2 additions and 2 deletions

View File

@ -63,6 +63,6 @@ class Delete extends Command {
return;
}
$output->writeln('<error>The specified could not be deleted. Please check the logs.</error>');
$output->writeln('<error>The specified user could not be deleted. Please check the logs.</error>');
}
}

View File

@ -53,7 +53,7 @@ class DeleteTest extends TestCase {
public function validUserLastSeen() {
return [
[true, 'The specified user was deleted'],
[false, 'The specified could not be deleted'],
[false, 'The specified user could not be deleted'],
];
}