8000 fix · pierredup/symfony@7b3f4e8 · GitHub
[go: up one dir, main page]

Skip to content
forked from symfony/symfony

Commit 7b3f4e8

Browse files
fix
1 parent 7a59855 commit 7b3f4e8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Symfony/Component/VarDumper/Tests/Caster/DateCasterTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ public function provideDateTimes()
102102
*/
103103
public function testDumpInterval($intervalSpec, $ms, $invert, $expected)
104104
{
105-
if ($ms && PHP_VERSION_ID >= 70200 && version_compare(PHP_VERSION, '7.2.0rc2', '<=')) {
106-
$this->markTestSkipped('Skipped on 7.2 before rc3 because of php bug #75354.');
105+
if ($ms && PHP_VERSION_ID >= 70200 && version_compare(PHP_VERSION, '7.2.0rc3', '<=')) {
106+
$this->markTestSkipped('Skipped on 7.2 before rc4 because of php bug #75354.');
107107
}
108108

109109
$interval = $this->createInterval($intervalSpec, $ms, $invert);
@@ -122,8 +122,8 @@ public function testDumpInterval($intervalSpec, $ms, $invert, $expected)
122122
*/
123123
public function testDumpIntervalExcludingVerbosity($intervalSpec, $ms, $invert, $expected)
124124
{
125-
if ($ms && PHP_VERSION_ID >= 70200 && version_compare(PHP_VERSION, '7.2.0rc2', '<=')) {
126-
$this->markTestSkipped('Skipped on 7.2 before rc3 because of php bug #75354.');
125+
if ($ms && PHP_VERSION_ID >= 70200 && version_compare(PHP_VERSION, '7.2.0rc3', '<=')) {
126+
$this->markTestSkipped('Skipped on 7.2 before rc4 because of php bug #75354.');
127127
}
128128

129129
$interval = $this->createInterval($intervalSpec, $ms, $invert);

0 commit comments

Comments
 (0)
0