Skip to content

Commit a46e3f5

Browse files
committed
Fix tests after #20227 - for the default storage engine
Pull-request: #20227 Ref: #20171 Signed-off-by: William Desportes <williamdes@wdes.fr>
1 parent e454326 commit a46e3f5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/unit/Controllers/Database/Structure/AddPrefixTableControllerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function testAddPrefix(): void
4646
[['utf8mb4_uca1400_ai_ci']],
4747
['DEFAULT_COLLATION_NAME'],
4848
);
49-
$dbiDummy->addResult('SELECT @@storage_engine;', [['InnoDB']]);
49+
$dbiDummy->addResult('SELECT @@default_storage_engine;', [['InnoDB']]);
5050

5151
$request = ServerRequestFactory::create()->createServerRequest('POST', 'https://example.com/')
5252
->withParsedBody(['db' => 'test_db', 'add_prefix' => 'test_', 'selected' => ['table']]);

0 commit comments

Comments
 (0)