Skip to content

Commit 7fcbcff

Browse files
committed
Avoid PHPUnit warnings by using dummy assertions
1 parent 914304f commit 7fcbcff

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

tests/AbstractLoopTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,8 @@ public function testRemoveInvalid()
262262
// remove a valid stream from the event loop that was never added in the first place
263263
$this->loop->removeReadStream($stream);
264264
$this->loop->removeWriteStream($stream);
265+
266+
$this->assertTrue(true);
265267
}
266268

267269
/** @test */

tests/Timer/TimersTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,7 @@ public function testBlockedTimer()
2525
}));
2626

2727
$timers->tick();
28+
29+
$this->assertTrue(true);
2830
}
2931
}

0 commit comments

Comments
 (0)