Fix failing tests due to way nest creation worked

This commit is contained in:
Dane Everitt 2017-11-04 13:01:54 -05:00
parent 233cbfda09
commit f5b20e38c4
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
4 changed files with 46 additions and 35 deletions

View file

@ -59,7 +59,7 @@ class NestSeeder extends Seeder
$this->creationService->handle([
'name' => 'Minecraft',
'description' => 'Minecraft - the classic game from Mojang. With support for Vanilla MC, Spigot, and many others!',
]);
], 'support@pterodactyl.io');
}
}
@ -76,7 +76,7 @@ class NestSeeder extends Seeder
$this->creationService->handle([
'name' => 'Source Engine',
'description' => 'Includes support for most Source Dedicated Server games.',
]);
], 'support@pterodactyl.io');
}
}
@ -93,7 +93,7 @@ class NestSeeder extends Seeder
$this->creationService->handle([
'name' => 'Voice Servers',
'description' => 'Voice servers such as Mumble and Teamspeak 3.',
]);
], 'support@pterodactyl.io');
}
}
}