Skip to content

Commit b981521

Browse files
committed
fix(test): sync expected with current
1 parent d3b4b7b commit b981521

File tree

1 file changed

+0
-28
lines changed

1 file changed

+0
-28
lines changed

src/Doctrine/Orm/Tests/Filter/BackedEnumFilterTestTrait.php

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -32,25 +32,11 @@ public function testGetDescription(): void
3232
'property' => 'dummyBackedEnum',
3333
'type' => 'string',
3434
'required' => false,
35-
'is_collection' => false,
3635
'schema' => [
3736
'type' => 'string',
3837
'enum' => ['one', 'two'],
3938
],
4039
],
41-
'dummyBackedEnum[]' => [
42-
'property' => 'dummyBackedEnum',
43-
'type' => 'string',
44-
'required' => false,
45-
'is_collection' => true,
46-
'schema' => [
47-
'type' => 'array',
48-
'items' => [
49-
'type' => 'string',
50-
'enum' => ['one', 'two'],
51-
],
52-
],
53-
],
5440
], $filter->getDescription($this->resourceClass));
5541
}
5642

@@ -63,25 +49,11 @@ public function testGetDescriptionDefaultFields(): void
6349
'property' => 'dummyBackedEnum',
6450
'type' => 'string',
6551
'required' => false,
66-
'is_collection' => false,
6752
'schema' => [
6853
'type' => 'string',
6954
'enum' => ['one', 'two'],
7055
],
7156
],
72-
'dummyBackedEnum[]' => [
73-
'property' => 'dummyBackedEnum',
74-
'type' => 'string',
75-
'required' => false,
76-
'is_collection' => true,
77-
'schema' => [
78-
'type' => 'array',
79-
'items' => [
80-
'type' => 'string',
81-
'enum' => ['one', 'two'],
82-
],
83-
],
84-
],
8557
], $filter->getDescription($this->resourceClass));
8658
}
8759

0 commit comments

Comments
 (0)