Skip to content
Snippets Groups Projects
Commit 8bc4a10d authored by Morris Jobke's avatar Morris Jobke
Browse files

fix unit tests

parent 5ed38a75
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment