Skip to content

Commit 7b4540a

Browse files
committed
fix: bump phpunit assertions
1 parent aa38cca commit 7b4540a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/UnitTest/Definition/Source/DefinitionGlobTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function should_load_definitions_from_glob()
3636
$definition = $definitions['foo'];
3737
$this->assertInstanceOf(ValueDefinition::class, $definition);
3838
$this->assertEquals('bar', $definition->getValue());
39-
$this->assertInternalType('string', $definition->getValue());
39+
$this->assertIsString($definition->getValue());
4040
}
4141

4242
/**

0 commit comments

Comments
 (0)