Skip to content

Commit 9eae2ae

Browse files
committed
fix code reviews
1 parent b3df7fd commit 9eae2ae

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Constraints/DefaultPropertiesTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -149,14 +149,14 @@ public function getValidTests()
149149
'{"items":[{"default":null}]}',
150150
'[null]'
151151
),
152-
array(// #21 items might be an array of schema (instead of an array of schema)
152+
array(// #21 items might be a schema (instead of an array of schema)
153153
'[{}]',
154-
'{"items":{"properties":{"propertyOne":{"default":"valueOne"}},"required":[]}}',
154+
'{"items":{"properties":{"propertyOne":{"default":"valueOne"}}}}',
155155
'[{"propertyOne":"valueOne"}]'
156156
),
157-
array(// #22 if items is not an array, it does not create new item
157+
array(// #22 if items is not an array, it does not create a new item
158158
'[]',
159-
'{"items":{"properties":{"propertyOne":{"default":"valueOne"}},"required":[]}}',
159+
'{"items":{"properties":{"propertyOne":{"default":"valueOne"}}}}',
160160
'[]'
161161
),
162162
);

0 commit comments

Comments
 (0)