Skip to content

Commit 32cd0b4

Browse files
committed
Remove unneeded unit test directive.
1 parent 776a62c commit 32cd0b4

2 files changed

Lines changed: 3 additions & 6 deletions

File tree

tests/system/Log/FileHandlerTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ protected function setUp(): void
1515
$this->start = $this->root->url() . '/';
1616
}
1717

18-
/**
19-
* @group testme
20-
*/
2118
public function testHandle()
2219
{
2320
$config = new LoggerConfig();

tests/system/Log/LoggerTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,12 +205,12 @@ public function testLogInterpolatesFileAndLine()
205205
$_ENV['foo'] = 'bar';
206206

207207
$logger->log('debug', 'Test message {file} {line}');
208-
$line = __LINE__ - 1;
209-
$expected = "LoggerTest.php $line";
208+
$line = __LINE__ - 1;
209+
$expected = "LoggerTest.php $line";
210210

211211
$logs = TestHandler::getLogs();
212212

213-
$this->assertTrue(strpos($logs[0], $expected) > 1);
213+
$this->assertTrue(strpos($logs[0], $expected) > 1);
214214
}
215215

216216
//--------------------------------------------------------------------

0 commit comments

Comments
 (0)