Skip to content

Commit 55de1ba

Browse files
testing more unit test fixes
1 parent abd103b commit 55de1ba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: tests/UtilsTests/CustomAttributeConditionEvaluatorLoggingTest.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,13 @@
2020
use Monolog\Logger;
2121
use Optimizely\Utils\CustomAttributeConditionEvaluator;
2222
use PHPUnit\Framework\TestCase;
23+
use Optimizely\Logger\LoggerInterface;
2324

2425
class CustomAttributeConditionEvaluatorLoggingTest extends TestCase
2526
{
2627
protected function setUp() :void
2728
{
28-
$this->loggerMock = $this->getMockBuilder(NoOpLogger::class)
29+
$this->loggerMock = $this->getMockBuilder(LoggerInterface::class)
2930
->setMethods(array('log'))
3031
->getMock();
3132
}

0 commit comments

Comments
 (0)