mirror of
https://github.com/nextcloud/server.git
synced 2026-04-05 09:06:35 -04:00
fix unit tests
This commit is contained in:
parent
5ed38a75d6
commit
8bc4a10dbe
1 changed files with 2 additions and 2 deletions
|
|
@ -76,7 +76,7 @@ class Test_OC_Setup extends \Test\TestCase {
|
|||
$this->assertSame(array(), $result);
|
||||
}
|
||||
|
||||
public function testGetSupportedDatabasesWitAllWorking() {
|
||||
public function testGetSupportedDatabasesWithAllWorking() {
|
||||
$this->config
|
||||
->expects($this->once())
|
||||
->method('getSystemValue')
|
||||
|
|
@ -88,7 +88,7 @@ class Test_OC_Setup extends \Test\TestCase {
|
|||
->method('class_exists')
|
||||
->will($this->returnValue(true));
|
||||
$this->setupClass
|
||||
->expects($this->exactly(4))
|
||||
->expects($this->exactly(3))
|
||||
->method('is_callable')
|
||||
->will($this->returnValue(true));
|
||||
$result = $this->setupClass->getSupportedDatabases();
|
||||
|
|
|
|||
Loading…
Reference in a new issue