Skip to content

Commit 9b18834

Browse files
committed
Assert updated
1 parent 56bf55e commit 9b18834

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/code/Magento/Contact/Test/Unit/Model/ConfigTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function testIsEnabled(): void
6262
->with(config::XML_PATH_ENABLED, ScopeInterface::SCOPE_STORE)
6363
->willReturn(true);
6464

65-
$this->assertTrue(true, $this->model->isEnabled());
65+
$this->assertTrue($this->model->isEnabled());
6666
}
6767

6868
/**
@@ -77,7 +77,7 @@ public function testIsNotEnabled(): void
7777
->with(config::XML_PATH_ENABLED, ScopeInterface::SCOPE_STORE)
7878
->willReturn(false);
7979

80-
$this->assertFalse(false, $this->model->isEnabled());
80+
$this->assertFalse($this->model->isEnabled());
8181
}
8282

8383
/**

0 commit comments

Comments
 (0)