Skip to content

Commit baf24f8

Browse files
[appveyor] PHP 5.3.11 for Symfony 2.7
1 parent 02be6b0 commit baf24f8

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

Tests/Normalizer/GetSetMethodNormalizerTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,9 @@ public function testConstructorDenormalizeWithMissingOptionalArgument()
209209

210210
public function testConstructorDenormalizeWithOptionalDefaultArgument()
211211
{
212+
if (PHP_VERSION_ID <= 50316) {
213+
$this->markTestSkipped('See https://bugs.php.net/62715');
214+
}
212215
$obj = $this->normalizer->denormalize(
213216
array('bar' => 'test'),
214217
__NAMESPACE__.'\GetConstructorArgsWithDefaultValueDummy', 'any');

Tests/Normalizer/ObjectNormalizerTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,9 @@ public function testConstructorDenormalizeWithMissingOptionalArgument()
157157

158158
public function testConstructorDenormalizeWithOptionalDefaultArgument()
159159
{
160+
if (PHP_VERSION_ID <= 50316) {
161+
$this->markTestSkipped('See https://bugs.php.net/62715');
162+
}
160163
$obj = $this->normalizer->denormalize(
161164
array('bar' => 'test'),
162165
__NAMESPACE__.'\ObjectConstructorArgsWithDefaultValueDummy', 'any');

0 commit comments

Comments
 (0)