Fix testProcessAndValidate() test in ConfigurationTest

This commit is contained in:
kakaska 2019-02-14 18:37:50 +01:00
parent 58b99f9c4e
commit 883381aca0

View File

@ -24,11 +24,11 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase
$this->assertArrayHasKey('adapter', $processedConfig);
$this->assertArrayHasKey('key_storage', $processedConfig);
$this->assertArrayHasKey('key_storage_password', $processedConfig);
$this->assertCount(7, $processedConfig);
$this->assertCount(6, $processedConfig);
}
/**
* @expectedException Exception
* @expectedException \Exception
*/
public function testClassNotFoundKeyStorageConfig()
{
@ -44,7 +44,7 @@ class ConfigurationTest extends \PHPUnit_Framework_TestCase
}
/**
* @expectedException Exception
* @expectedException \Exception
*/
public function testClassDoesNotImplementInterfaceKeyStorageConfig()
{