Skip to content

Commit c8a6590

Browse files
committed
fix expected types
1 parent f4f208c commit c8a6590

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Symfony/Component/Serializer/Tests/SerializerTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@ public function testCollectDenormalizationErrorsWithoutTypeExtractor()
12531253
[
12541254
'currentType' => 'array',
12551255
'expectedTypes' => [
1256-
'unknown',
1256+
'string',
12571257
],
12581258
'path' => 'string',
12591259
'useMessageForUser' => false,
@@ -1262,7 +1262,7 @@ public function testCollectDenormalizationErrorsWithoutTypeExtractor()
12621262
[
12631263
'currentType' => 'array',
12641264
'expectedTypes' => [
1265-
'unknown',
1265+
'int',
12661266
],
12671267
'path' => 'int',
12681268
'useMessageForUser' => false,
@@ -1271,7 +1271,7 @@ public function testCollectDenormalizationErrorsWithoutTypeExtractor()
12711271
[
12721272
'currentType' => 'array',
12731273
'expectedTypes' => [
1274-
'unknown',
1274+
'float',
12751275
],
12761276
'path' => 'float',
12771277
'useMessageForUser' => false,

0 commit comments

Comments
 (0)