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 89abdaf commit 8e93b14Copy full SHA for 8e93b14
app/code/Magento/Search/Test/Unit/Controller/Term/PopularTest.php
@@ -79,7 +79,7 @@ public function testResult()
79
->method('create')
80
->willReturn($resultPageMock);
81
82
- $this->action->execute();
+ $this->assertEquals($resultPageMock, $this->action->execute());
83
}
84
85
public function testResultWithDisabledPage()
@@ -98,6 +98,6 @@ public function testResultWithDisabledPage()
98
->method('forward')
99
->with('noroute');
100
101
+ $this->assertEquals($resultForwardMock, $this->action->execute());
102
103
0 commit comments