We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca8c7ba commit bd557b2Copy full SHA for bd557b2
1 file changed
tests/CurrentProcess/GenericTest.php
@@ -63,6 +63,6 @@ public function testMemory()
63
$process = Generic::of(Halt\Usleep::new());
64
65
$this->assertInstanceOf(Bytes::class, $process->memory());
66
- $this->assertTrue($process->memory()->toInt() > 6000000); // ~5MB
+ $this->assertGreaterThan(6_000_000, $process->memory()->toInt()); // ~5MB
67
}
68
0 commit comments