mirror of
https://github.com/Seldaek/monolog.git
synced 2025-08-20 20:01:52 +02:00
Use fully-qualified name for native functions (#1887)
This commit is contained in:
@@ -190,11 +190,11 @@ class ProcessHandlerTest extends TestCase
|
||||
$handler->handle($this->getRecord(Level::Warning, '21 is only the half truth'));
|
||||
|
||||
$process = $property->getValue($handler);
|
||||
$this->assertTrue(is_resource($process), 'Process is not running although it should.');
|
||||
$this->assertTrue(\is_resource($process), 'Process is not running although it should.');
|
||||
|
||||
$handler->close();
|
||||
|
||||
$process = $property->getValue($handler);
|
||||
$this->assertFalse(is_resource($process), 'Process is still running although it should not.');
|
||||
$this->assertFalse(\is_resource($process), 'Process is still running although it should not.');
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user