Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions tests/Constraints/DefaultPropertiesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,6 @@ public function getValidTests()
'{"items":{"properties":{"propertyOne":{"default":"valueOne"}}}}',
'[{"propertyOne":"valueOne"}]'
),
array(// #21b items is an array of schema
'[{}]',
'{"items":[{"properties":{"propertyOne":{"default":"valueOne"}}}]}',
'[{"propertyOne":"valueOne"}]'
),
array(// #22 if items is not an array, it does not create a new item
'[]',
'{"items":{"properties":{"propertyOne":{"default":"valueOne"}}}}',
Expand All @@ -169,6 +164,11 @@ public function getValidTests()
'{"items":{"default":"b"}, "minItems": 3}',
'["a","b","b"]'
),
array(// #24 items is an array of schema

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Solves #521 (review)

'[{}]',
'{"items":[{"properties":{"propertyOne":{"default":"valueOne"}}}]}',
'[{"propertyOne":"valueOne"}]'
),
);
}

Expand Down