Skip to content

Commit ce06750

Browse files
committed
Merge pull request reactphp#122 from reactphp/timer-tests
Only skip specific failing libevent timer test
2 parents 0e19e41 + 504d0b6 commit ce06750

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/React/Tests/EventLoop/Timer/LibEventTimerTest.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,15 @@ class LibEventTimerTest extends AbstractTimerTest
88
{
99
public function createLoop()
1010
{
11-
$this->markTestSkipped('libevent timers are currently broken.');
12-
1311
if (!function_exists('event_base_new')) {
1412
$this->markTestSkipped('libevent tests skipped because ext-libevent is not installed.');
1513
}
1614

1715
return new LibEventLoop();
1816
}
17+
18+
public function testAddPeriodicTimerCancelsItself()
19+
{
20+
$this->markTestSkipped('libevent timers are currently broken.');
21+
}
1922
}

0 commit comments

Comments
 (0)