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 0e043cf commit abd103bCopy full SHA for abd103b
tests/UtilsTests/CustomAttributeConditionEvaluatorTest.php
@@ -19,12 +19,13 @@
19
20
use Optimizely\Utils\CustomAttributeConditionEvaluator;
21
use PHPUnit\Framework\TestCase;
22
+use Optimizely\Logger\LoggerInterface;
23
24
class CustomAttributeConditionEvaluatorTest extends TestCase
25
{
26
protected function setUp() : void
27
- $this->loggerMock = $this->getMockBuilder(NoOpLogger::class)
28
+ $this->loggerMock = $this->getMockBuilder(LoggerInterface::class)
29
->setMethods(array('log'))
30
->getMock();
31
0 commit comments