Skip to content

Commit

Permalink
Merge pull request #12 from litvinjuan/fix/fix-enum-accessor-test-dep…
Browse files Browse the repository at this point in the history
…recation+

Remove deprecated assertInternalType in tests
  • Loading branch information
fulopattila122 authored Mar 5, 2020
2 parents 071917d + 4828dee commit d3740dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/EnumAccessorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public function it_can_still_read_casted_fields()

$this->assertNotNull($order->id);
$this->assertInstanceOf(\DateTime::class, $order->created_at);
$this->assertInternalType('boolean', $order->is_active);
$this->assertIsBool($order->is_active);
}

/**
Expand Down

0 comments on commit d3740dd

Please sign in to comment.