Skip to content

Commit 5617e62

Browse files
Merge branch '4.3' into 4.4
* 4.3: Fix assertInternalType deprecation in phpunit 9 Micro-typo fix
2 parents b363e3b + 22c4341 commit 5617e62

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
@@ -1940,7 +1940,7 @@ public function testFilenamesAreParsedAsStringsWithoutFlag()
19401940

19411941
public function testParseFile()
19421942
{
1943-
$this->assertInternalType('array', $this->parser->parseFile(__DIR__.'/Fixtures/index.yml'));
1943+
$this->assertIsArray($this->parser->parseFile(__DIR__.'/Fixtures/index.yml'));
19441944
}
19451945

19461946
/**

0 commit comments

Comments
 (0)