Skip to content

Commit 00c9124

Browse files
committed
fixed
1 parent e3967dc commit 00c9124

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
@@ -88,7 +88,7 @@ public function testImportExecutableWithCompression()
8888
*/
8989
public function testAfterExport()
9090
{
91-
$driver = $this->getMockForDriver(MySql::class, ['deleteAuthFile']);
91+
$driver = $this->getMockForDriver(Mysql::class, ['deleteAuthFile']);
9292
$driver->expects($this->once())->method('deleteAuthFile');
9393
$this->assertNull($driver->afterExport());
9494
}
@@ -99,7 +99,7 @@ public function testAfterExport()
9999
*/
100100
public function testAfterImport()
101101
{
102-
$driver = $this->getMockForDriver(MySql::class, ['deleteAuthFile']);
102+
$driver = $this->getMockForDriver(Mysql::class, ['deleteAuthFile']);
103103
$driver->expects($this->once())->method('deleteAuthFile');
104104
$this->assertNull($driver->afterImport());
105105
}

0 commit comments

Comments
 (0)