Apply fixes from StyleCI (#501)

This commit is contained in:
Dane Everitt 2017-06-17 20:52:32 -05:00 committed by GitHub
parent 0111ca7768
commit ce2b2447d0
10 changed files with 19 additions and 19 deletions

View file

@ -24,12 +24,12 @@
namespace Tests\Feature\Services;
use Illuminate\Validation\ValidationException;
use Pterodactyl\Exceptions\DisplayException;
use Pterodactyl\Models\Node;
use Tests\TestCase;
use Pterodactyl\Models\Node;
use Pterodactyl\Models\Location;
use Pterodactyl\Services\LocationService;
use Pterodactyl\Exceptions\DisplayException;
use Illuminate\Validation\ValidationException;
class LocationServiceTest extends TestCase
{
@ -65,7 +65,7 @@ class LocationServiceTest extends TestCase
$this->assertEquals($data['short'], $response->short);
$this->assertDatabaseHas('locations', [
'short' => $data['short'],
'long' => $data['long']
'long' => $data['long'],
]);
}

View file

@ -24,11 +24,11 @@
namespace Tests\Feature\Services;
use Illuminate\Support\Facades\Notification;
use Pterodactyl\Models\User;
use Pterodactyl\Notifications\AccountCreated;
use Pterodactyl\Services\UserService;
use Tests\TestCase;
use Pterodactyl\Models\User;
use Pterodactyl\Services\UserService;
use Illuminate\Support\Facades\Notification;
use Pterodactyl\Notifications\AccountCreated;
class UserServiceTest extends TestCase
{