This commit is contained in:
TomasVotruba 2017-10-17 00:03:56 +02:00
parent f0f2f091f3
commit 1c4c3dac8e

View File

@ -25,10 +25,9 @@ final class NodeValueResolverTest extends AbstractContainerAwareTestCase
{
$arrayNode = new Array_([
new ArrayItem(new String_('hi')),
new ArrayItem(BuilderHelpers::normalizeValue(true))
new ArrayItem(BuilderHelpers::normalizeValue(true)),
]);
$resolved = $this->nodeValueResolver->resolve($arrayNode);
$this->assertSame(['hi', true], $resolved);
}