diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-07-29 20:14:28 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-07-29 20:14:28 +0200 |
commit | 8bc4a10dbe6235571ab8399bbcc41d2cfb9b89aa (patch) | |
tree | 70d23462cc0f49ac26e6128fbbda55cc8167a6bd /tests | |
parent | 5ed38a75d64c06d923a580175f6ab732234694a1 (diff) | |
download | nextcloud-server-8bc4a10dbe6235571ab8399bbcc41d2cfb9b89aa.tar.gz nextcloud-server-8bc4a10dbe6235571ab8399bbcc41d2cfb9b89aa.zip |
fix unit tests
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/setup.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/lib/setup.php b/tests/lib/setup.php index 8900d492b66..d07eaa40ee0 100644 --- a/tests/lib/setup.php +++ b/tests/lib/setup.php @@ -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(); |