Skip to content

Commit fa9f818

Browse files
committed
test names changed
1 parent f34c54b commit fa9f818

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/TypedArrayTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function allowedTypeProvider()
4040
*
4141
* @dataProvider allowedTypeProvider
4242
*/
43-
public function testCreateInstance($type)
43+
public function testNewInstance($type)
4444
{
4545
$this->assertInstanceOf(TypedArray::class, (new TypedArray($type)));
4646
}
@@ -50,7 +50,7 @@ public function testCreateInstance($type)
5050
*
5151
* @expectedException InvalidArgumentException
5252
*/
53-
public function testCreateInstanceWithNotAllowedType()
53+
public function testNewInstanceWithNotAllowedType()
5454
{
5555
$this->assertInstanceOf(TypedArray::class, (new TypedArray('notAllowedType')));
5656
}

0 commit comments

Comments
 (0)