Skip to content

Commit ec0045b

Browse files
committed
Fix assertInternalType deprecation in phpunit 9
1 parent 39c0132 commit ec0045b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/ParserTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2080,7 +2080,7 @@ public function testFilenamesAreParsedAsStringsWithoutFlag()
20802080

20812081
public function testParseFile()
20822082
{
2083-
$this->assertInternalType('array', $this->parser->parseFile(__DIR__.'/Fixtures/index.yml'));
2083+
$this->assertIsArray($this->parser->parseFile(__DIR__.'/Fixtures/index.yml'));
20842084
}
20852085

20862086
/**

0 commit comments

Comments
 (0)