Skip to content

Commit e74f09a

Browse files
committed
Fix incomplete/skipped marking
1 parent e2f1101 commit e74f09a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Test.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ function testOnErrorFailure() {
685685
* @expectedExceptionMessage test
686686
*/
687687
function testLoopException() {
688-
$this->start(function(Driver $loop) {
688+
$this->start(function(Driver $loop) {
689689
$loop->defer(function() use ($loop) {
690690
// force next tick, outside of primary startup tick
691691
$loop->defer(function() {
@@ -721,7 +721,7 @@ function testOnSignalWatcher() {
721721

722722
function testInitiallyDisabledOnSignalWatcher() {
723723
if (!\extension_loaded("posix")) {
724-
$this->markTestIncomplete("ext/posix required to test signal handlers");
724+
$this->markTestSkipped("ext/posix required to test signal handlers");
725725
}
726726

727727
$this->expectOutputString("caught SIGUSR1");

0 commit comments

Comments
 (0)