Skip to content

Commit ef0a26d

Browse files
committed
fix typo in test
1 parent 4a80efa commit ef0a26d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Swagger/Serializer/DocumentationNormalizerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public function testNormalize()
8888
$propertyMetadataFactoryProphecy = $this->prophesize(PropertyMetadataFactoryInterface::class);
8989
$propertyMetadataFactoryProphecy->create(Dummy::class, 'id')->shouldBeCalled()->willReturn(new PropertyMetadata(new Type(Type::BUILTIN_TYPE_INT), 'This is an id.', true, false));
9090
$propertyMetadataFactoryProphecy->create(Dummy::class, 'name')->shouldBeCalled()->willReturn(new PropertyMetadata(new Type(Type::BUILTIN_TYPE_STRING), 'This is a name.', true, true, true, true, false, false, null, null, []));
91-
$propertyMetadataFactoryProphecy->create(Dummy::class, 'description')->shouldBeCalled()->willReturn(new PropertyMetadata(new Type(Type::BUILTIN_TYPE_STRING), 'This is a initializable but not writable property.', true, false, true, true, false, false, null, null, [], null, true));
91+
$propertyMetadataFactoryProphecy->create(Dummy::class, 'description')->shouldBeCalled()->willReturn(new PropertyMetadata(new Type(Type::BUILTIN_TYPE_STRING), 'This is an initializable but not writable property.', true, false, true, true, false, false, null, null, [], null, true));
9292
$resourceClassResolverProphecy = $this->prophesize(ResourceClassResolverInterface::class);
9393
$resourceClassResolverProphecy->isResourceClass(Dummy::class)->willReturn(true);
9494

0 commit comments

Comments
 (0)