Skip to content

Commit

Permalink
Fix merge issues
Browse files Browse the repository at this point in the history
Signed-off-by: Kamil Tekiela <tekiela246@gmail.com>
  • Loading branch information
kamil-tekiela committed Feb 20, 2023
1 parent 4b71da0 commit c311b9f
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions test/classes/TableTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -295,13 +295,6 @@ protected function setUp(): void
$dbi->expects($this->any())->method('getTablesFull')
->will($this->returnValue($databases));

$resultStub->expects($this->any())
->method('numRows')
->will($this->returnValue(20));

$dbi->expects($this->any())->method('tryQuery')
->will($this->returnValue($resultStub));

$dbi->expects($this->any())->method('query')
->will($this->returnValue($resultStub));

Expand Down Expand Up @@ -1533,6 +1526,20 @@ public function testMoveCopy(): void
true,
$resultStub,
],
[
'SHOW TABLE STATUS FROM `aa` WHERE Name = \'ad\'',
Connection::TYPE_USER,
DatabaseInterface::QUERY_BUFFERED,
true,
$resultStub,
],
[
'USE `aa`',
Connection::TYPE_USER,
DatabaseInterface::QUERY_BUFFERED,
true,
$resultStub,
],
]));
$resultStub->expects($this->any())
->method('fetchRow')
Expand Down

0 comments on commit c311b9f

Please sign in to comment.