From 23deb5c46f3ce9bd9cd198385c9ba551bac9dca4 Mon Sep 17 00:00:00 2001 From: Haowei Wen Date: Sat, 2 Mar 2019 21:54:31 +0800 Subject: [PATCH] Polish TextureControllerTest See https://github.com/bs-community/blessing-skin-server/pull/8#discussion_r261825089 --- tests/TextureControllerTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/TextureControllerTest.php b/tests/TextureControllerTest.php index c975d597..345b63a2 100644 --- a/tests/TextureControllerTest.php +++ b/tests/TextureControllerTest.php @@ -80,8 +80,8 @@ class TextureControllerTest extends TestCase ->assertJson([ 'username' => $player->player_name, 'skins' => [ - 'default' => $alex->hash, - 'slim' => $alex->hash + 'slim' => $alex->hash, + 'default' => $alex->hash ], 'cape' => null ]); @@ -92,8 +92,8 @@ class TextureControllerTest extends TestCase 'player_name' => $player->player_name, 'model_preference' => ['slim'], 'skins' => [ - 'default' => $alex->hash, - 'slim' => $alex->hash + 'slim' => $alex->hash, + 'default' => $alex->hash ], 'cape' => null ]);