Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tymondesigns committed Jul 9, 2019
1 parent a3d2d85 commit c46ec79
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/PayloadTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ public function it_should_get_multiple_properties_when_passing_an_array_to_the_g
{
$values = $this->payload->get(['sub', 'jti']);

list($sub, $jti) = $values;
$sub = $values[0];
$jti = $values[1];

$this->assertInternalType('array', $values);
$this->assertSame($sub, 1);
Expand Down

0 comments on commit c46ec79

Please sign in to comment.