Merge pull request #16879 from jcfischer/jcf_fix_user_delete_message
Fix error message and add 'user' to it
This commit is contained in:
commit
dbe344ef3d
|
@ -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>');
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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'],
|
||||
];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue