From 883381aca0faa5abc02f671cd599aa4409add3b3 Mon Sep 17 00:00:00 2001 From: kakaska Date: Thu, 14 Feb 2019 18:37:50 +0100 Subject: [PATCH] Fix testProcessAndValidate() test in ConfigurationTest --- tests/Bitpay/Config/ConfigurationTest.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Bitpay/Config/ConfigurationTest.php b/tests/Bitpay/Config/ConfigurationTest.php index fdc717c..f7572a8 100644 --- a/tests/Bitpay/Config/ConfigurationTest.php +++ b/tests/Bitpay/Config/ConfigurationTest.php @@ -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() {