Skip to content

Commit 2c9a2a9

Browse files
ppvgunderdarknl
andcommitted
assert getIterable returns TypeArray instead of array
matches expected behavior since 1c9d8aa Co-authored-by: Jan Klopper <janklopper+underdark@gmail.com>
1 parent 03c733d commit 2c9a2a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/TypeArrayTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ public function testIterable(): void
225225
$this->assertEquals('bar', $retVals[0]);
226226
$this->assertEquals(1, $retVals[1]);
227227
$this->assertEquals(false, $retVals[2]);
228-
$this->assertIsArray($retVals[3]);
228+
$this->assertInstanceOf(TypeArray::class, $retVals[3]);
229229
}
230230

231231
protected function createTypeArray(): TypeArray

0 commit comments

Comments
 (0)