X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=tests%2FConfigTest.php;h=1014d10adb143571f68e1c6728826307aefb6123;hp=6e14186f51b356cdfbcd0d6a17f4a8342b440d72;hb=3107989f93cfb5808ce9d75f1c7d2b7ee3d83d18;hpb=361e6320e50a8bb1a3ccb675388b8042361669ae diff --git a/tests/ConfigTest.php b/tests/ConfigTest.php index 6e14186f..1014d10a 100644 --- a/tests/ConfigTest.php +++ b/tests/ConfigTest.php @@ -91,7 +91,7 @@ class ConfigTest extends PHPUnit_Framework_TestCase { $cfg = FrameworkConfiguration::getInstance(); // Try to read an empty configuration variable - $dummy = $cfg->readConfig(""); + $dummy = $cfg->readConfig(''); } catch (ConfigEntryIsEmptyException $expected) { // This exception was expected, so it is fine $testPassed = true; @@ -120,7 +120,7 @@ class ConfigTest extends PHPUnit_Framework_TestCase { $cfg = FrameworkConfiguration::getInstance(); // Try to read an empty configuration variable - $cfg->setConfigEntry("", 'will_never_be_set'); + $cfg->setConfigEntry('', 'will_never_be_set'); } catch (ConfigEntryIsEmptyException $expected) { // This exception was expected, so it is fine $testPassed = true;