Skip to content

Commit 22c4341

Browse files
Merge branch '3.4' into 4.3
* 3.4: Fix assertInternalType deprecation in phpunit 9 Micro-typo fix
2 parents c5d6274 + ec0045b commit 22c4341

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)