Skip to content

Commit 7b1dfd4

Browse files
committed
WIP
1 parent a172ea3 commit 7b1dfd4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/EntitySetCreate/KeyedCollectionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ public function test_enum_property()
8888
->body([
8989
'id' => 'zeta',
9090
'name' => 'Zeta',
91-
'colour' => Colour::Blue->name,
92-
'sock_colours' => Colour::Green->name.','.Colour::Red->name,
91+
'colour' => 'Blue',
92+
'sock_colours' => 'Green,Red',
9393
]),
9494
Response::HTTP_CREATED
9595
);

tests/EntitySetCreate/RedisTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,8 @@ public function test_enum_property()
109109
->body([
110110
'key' => 'zeta',
111111
'name' => 'Zeta',
112-
'colour' => Colour::Blue->name,
113-
'sock_colours' => Colour::Green->name.','.Colour::Red->name,
112+
'colour' => 'Blue',
113+
'sock_colours' => 'Green,Red',
114114
]),
115115
Response::HTTP_CREATED
116116
);

0 commit comments

Comments
 (0)