mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-18 14:23:44 +02:00
Begin moving packs to new service mechanisms, refactor exceptions for services
This commit is contained in:
@@ -46,10 +46,10 @@ class UsernameGenerationServiceTest extends TestCase
|
||||
|
||||
$this->service = new UsernameGenerationService();
|
||||
|
||||
$this->getFunctionMock('\\Pterodactyl\\Services\\Servers', 'bin2hex')
|
||||
$this->getFunctionMock('\\Pterodactyl\\Service\\Servers', 'bin2hex')
|
||||
->expects($this->any())->willReturn('dddddddd');
|
||||
|
||||
$this->getFunctionMock('\\Pterodactyl\\Services\\Servers', 'str_random')
|
||||
$this->getFunctionMock('\\Pterodactyl\\Service\\Servers', 'str_random')
|
||||
->expects($this->any())->willReturnCallback(function ($count) {
|
||||
return str_pad('', $count, 'a');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user