Skip to content

Commit

Permalink
Merge pull request #18132 from kamil-tekiela/fix-after-merge
Browse files Browse the repository at this point in the history
Fix merge issues
  • Loading branch information
MauricioFauth committed Feb 20, 2023
2 parents b0bc4f4 + c311b9f commit bd095c7
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions test/classes/TableTest.php
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 bd095c7

Please sign in to comment.