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 56bf55e commit 9b18834Copy full SHA for 9b18834
app/code/Magento/Contact/Test/Unit/Model/ConfigTest.php
@@ -62,7 +62,7 @@ public function testIsEnabled(): void
62
->with(config::XML_PATH_ENABLED, ScopeInterface::SCOPE_STORE)
63
->willReturn(true);
64
65
- $this->assertTrue(true, $this->model->isEnabled());
+ $this->assertTrue($this->model->isEnabled());
66
}
67
68
/**
@@ -77,7 +77,7 @@ public function testIsNotEnabled(): void
77
78
->willReturn(false);
79
80
- $this->assertFalse(false, $this->model->isEnabled());
+ $this->assertFalse($this->model->isEnabled());
81
82
83
0 commit comments