diff options
author | ArthurHoaro <arthur@hoa.ro> | 2017-03-08 19:59:00 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2017-03-08 20:00:21 +0100 |
commit | e6cd773f5a8bd757c9362524cfeb3f7cb7fa81c9 (patch) | |
tree | 15a52157ff65977577edb819c8b2ab1745c22a6e /tests/config/ConfigPluginTest.php | |
parent | 7c26f6626a47c7e3e902f6b00c7c9e640a18f22c (diff) | |
download | Shaarli-e6cd773f5a8bd757c9362524cfeb3f7cb7fa81c9.tar.gz Shaarli-e6cd773f5a8bd757c9362524cfeb3f7cb7fa81c9.tar.zst Shaarli-e6cd773f5a8bd757c9362524cfeb3f7cb7fa81c9.zip |
Fix blocking namespace issue
Diffstat (limited to 'tests/config/ConfigPluginTest.php')
-rw-r--r-- | tests/config/ConfigPluginTest.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/config/ConfigPluginTest.php b/tests/config/ConfigPluginTest.php index 22ab927b..deb02c9e 100644 --- a/tests/config/ConfigPluginTest.php +++ b/tests/config/ConfigPluginTest.php | |||
@@ -1,9 +1,7 @@ | |||
1 | <?php | 1 | <?php |
2 | namespace Shaarli\Config; | 2 | namespace Shaarli\Config; |
3 | 3 | ||
4 | /** | 4 | use Shaarli\Config\Exception\PluginConfigOrderException; |
5 | * Config' tests | ||
6 | */ | ||
7 | 5 | ||
8 | require_once 'application/config/ConfigPlugin.php'; | 6 | require_once 'application/config/ConfigPlugin.php'; |
9 | 7 | ||
@@ -41,7 +39,7 @@ class ConfigPluginTest extends \PHPUnit_Framework_TestCase | |||
41 | /** | 39 | /** |
42 | * Test save_plugin_config with invalid data. | 40 | * Test save_plugin_config with invalid data. |
43 | * | 41 | * |
44 | * @expectedException Shaarli\Config\PluginConfigOrderException | 42 | * @expectedException Shaarli\Config\Exception\PluginConfigOrderException |
45 | */ | 43 | */ |
46 | public function testSavePluginConfigInvalid() | 44 | public function testSavePluginConfigInvalid() |
47 | { | 45 | { |