From 7b3f4e8594fbe80a0e38f0bd3f77d6c4c90c7595 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 10 Oct 2017 19:19:34 +0200 Subject: [PATCH] fix --- .../Component/VarDumper/Tests/Caster/DateCasterTest.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/VarDumper/Tests/Caster/DateCasterTest.php b/src/Symfony/Component/VarDumper/Tests/Caster/DateCasterTest.php index ee0413beb3..1967d360e9 100644 --- a/src/Symfony/Component/VarDumper/Tests/Caster/DateCasterTest.php +++ b/src/Symfony/Component/VarDumper/Tests/Caster/DateCasterTest.php @@ -102,8 +102,8 @@ EODUMP; */ public function testDumpInterval($intervalSpec, $ms, $invert, $expected) { - if ($ms && PHP_VERSION_ID >= 70200 && version_compare(PHP_VERSION, '7.2.0rc2', '<=')) { - $this->markTestSkipped('Skipped on 7.2 before rc3 because of php bug #75354.'); + if ($ms && PHP_VERSION_ID >= 70200 && version_compare(PHP_VERSION, '7.2.0rc3', '<=')) { + $this->markTestSkipped('Skipped on 7.2 before rc4 because of php bug #75354.'); } $interval = $this->createInterval($intervalSpec, $ms, $invert); @@ -122,8 +122,8 @@ EODUMP; */ public function testDumpIntervalExcludingVerbosity($intervalSpec, $ms, $invert, $expected) { - if ($ms && PHP_VERSION_ID >= 70200 && version_compare(PHP_VERSION, '7.2.0rc2', '<=')) { - $this->markTestSkipped('Skipped on 7.2 before rc3 because of php bug #75354.'); + if ($ms && PHP_VERSION_ID >= 70200 && version_compare(PHP_VERSION, '7.2.0rc3', '<=')) { + $this->markTestSkipped('Skipped on 7.2 before rc4 because of php bug #75354.'); } $interval = $this->createInterval($intervalSpec, $ms, $invert);