Skip to content

Commit db3e80b

Browse files
committed
Merge branch 'develop' into cakephp4
2 parents e932daf + 00c9124 commit db3e80b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/TestCase/Driver/MysqlTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public function testImportExecutableWithCompression()
8989
*/
9090
public function testAfterExport()
9191
{
92-
$driver = $this->getMockForDriver(MySql::class, ['deleteAuthFile']);
92+
$driver = $this->getMockForDriver(Mysql::class, ['deleteAuthFile']);
9393
$driver->expects($this->once())->method('deleteAuthFile');
9494
$this->assertNull($driver->afterExport());
9595
}
@@ -100,7 +100,7 @@ public function testAfterExport()
100100
*/
101101
public function testAfterImport()
102102
{
103-
$driver = $this->getMockForDriver(MySql::class, ['deleteAuthFile']);
103+
$driver = $this->getMockForDriver(Mysql::class, ['deleteAuthFile']);
104104
$driver->expects($this->once())->method('deleteAuthFile');
105105
$this->assertNull($driver->afterImport());
106106
}

0 commit comments

Comments
 (0)