public function testUpdateGameScore()
 {
     $gameScore = GameScore::create(['username' => 'AAA', 'score' => 1000000, 'game' => $this->game->id]);
     $this->json('PATCH', "game-scores/{$gameScore->id}", ['data' => ['type' => 'game-scores', 'id' => (string) $gameScore->id, 'attributes' => ['username' => 'AAA', 'score' => 2000000], 'relationships' => ['game' => ['data' => ['type' => 'games', 'id' => (string) $this->game->id]]]]]);
     $this->assertResponseOk();
     $this->seeJson(['data' => ['type' => 'game-scores', 'id' => '1', 'attributes' => ['username' => 'AAA', 'score' => 2000000], 'relationships' => ['game' => ['data' => ['type' => 'games', 'id' => (string) $this->game->id]]]]]);
     $this->assertEquals(2000000, GameScore::firstOrFail()->score);
 }