Skip to content

Commit

Permalink
PHPUnit 8 is not 6 or 7 -> changed back internal type assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
fulopattila122 committed Sep 8, 2019
1 parent c497694 commit 0e542fb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .styleci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ enabled:
- ordered_class_elements
- php_unit_construct
- php_unit_dedicate_assert
- php_unit_dedicate_assert_internal_type
- php_unit_expectation
- php_unit_no_expectation_annotation
- php_unit_set_up_tear_down_visibility
Expand Down
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->assertIsBool($order->is_active);
$this->assertInternalType('boolean', $order->is_active);
}

/**
Expand Down

0 comments on commit 0e542fb

Please sign in to comment.