Skip to content

Commit 4a4abbe

Browse files
committed
MAGETWO-39528: Implement full text search for Sales module
1 parent a3d2f1c commit 4a4abbe

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/internal/Magento/Framework/App/Test/Unit/Response/Http/FileFactoryTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,14 +199,13 @@ public function testCreateStringContent()
199199
$this->responseMock->expects($this->once())
200200
->method('setHttpResponseCode')
201201
->with(200)
202-
->will($this->returnSelf());;
202+
->will($this->returnSelf());
203203
$this->responseMock->expects($this->once())
204204
->method('sendHeaders')
205205
->will($this->returnSelf());
206206
$this->dirMock->expects($this->once())
207207
->method('writeFile')
208208
->with('fileName', 'content', 'w+');
209-
210209
$streamMock = $this->getMockBuilder('Magento\Framework\Filesystem\File\WriteInterface')
211210
->disableOriginalConstructor()->getMock();
212211
$this->dirMock->expects($this->once())

0 commit comments

Comments
 (0)