We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abd103b commit 55de1baCopy full SHA for 55de1ba
tests/UtilsTests/CustomAttributeConditionEvaluatorLoggingTest.php
@@ -20,12 +20,13 @@
20
use Monolog\Logger;
21
use Optimizely\Utils\CustomAttributeConditionEvaluator;
22
use PHPUnit\Framework\TestCase;
23
+use Optimizely\Logger\LoggerInterface;
24
25
class CustomAttributeConditionEvaluatorLoggingTest extends TestCase
26
{
27
protected function setUp() :void
28
- $this->loggerMock = $this->getMockBuilder(NoOpLogger::class)
29
+ $this->loggerMock = $this->getMockBuilder(LoggerInterface::class)
30
->setMethods(array('log'))
31
->getMock();
32
}
0 commit comments