aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/config
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2017-03-08 19:59:00 +0100
committerArthurHoaro <arthur@hoa.ro>2017-03-08 20:00:21 +0100
commite6cd773f5a8bd757c9362524cfeb3f7cb7fa81c9 (patch)
tree15a52157ff65977577edb819c8b2ab1745c22a6e /tests/config
parent7c26f6626a47c7e3e902f6b00c7c9e640a18f22c (diff)
downloadShaarli-e6cd773f5a8bd757c9362524cfeb3f7cb7fa81c9.tar.gz
Shaarli-e6cd773f5a8bd757c9362524cfeb3f7cb7fa81c9.tar.zst
Shaarli-e6cd773f5a8bd757c9362524cfeb3f7cb7fa81c9.zip
Fix blocking namespace issue
Diffstat (limited to 'tests/config')
-rw-r--r--tests/config/ConfigPluginTest.php6
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
2namespace Shaarli\Config; 2namespace Shaarli\Config;
3 3
4/** 4use Shaarli\Config\Exception\PluginConfigOrderException;
5 * Config' tests
6 */
7 5
8require_once 'application/config/ConfigPlugin.php'; 6require_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 {