diff options
author | VirtualTam <virtualtam@flibidi.net> | 2018-12-03 01:22:45 +0100 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2019-01-12 22:47:48 +0100 |
commit | 6696729b88e67504fdd333cbaab43a63c3617d86 (patch) | |
tree | f617e4108e0a2d41278935f4a2b4528f49e70c6d /tests/bookmark/LinkDBTest.php | |
parent | f24896b237e40718fb6eaa2869592eb0855a47fd (diff) | |
download | Shaarli-6696729b88e67504fdd333cbaab43a63c3617d86.tar.gz Shaarli-6696729b88e67504fdd333cbaab43a63c3617d86.tar.zst Shaarli-6696729b88e67504fdd333cbaab43a63c3617d86.zip |
namespacing: \Shaarli\Bookmark\LinkFilter
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'tests/bookmark/LinkDBTest.php')
-rw-r--r-- | tests/bookmark/LinkDBTest.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/bookmark/LinkDBTest.php b/tests/bookmark/LinkDBTest.php index f18a3155..65409e95 100644 --- a/tests/bookmark/LinkDBTest.php +++ b/tests/bookmark/LinkDBTest.php | |||
@@ -6,7 +6,7 @@ | |||
6 | namespace Shaarli\Bookmark; | 6 | namespace Shaarli\Bookmark; |
7 | 7 | ||
8 | use DateTime; | 8 | use DateTime; |
9 | use LinkNotFoundException; | 9 | use Shaarli\Bookmark\Exception\LinkNotFoundException; |
10 | use ReferenceLinkDB; | 10 | use ReferenceLinkDB; |
11 | use ReflectionClass; | 11 | use ReflectionClass; |
12 | use Shaarli; | 12 | use Shaarli; |
@@ -457,7 +457,7 @@ class LinkDBTest extends \PHPUnit\Framework\TestCase | |||
457 | /** | 457 | /** |
458 | * Test filterHash() with an invalid smallhash. | 458 | * Test filterHash() with an invalid smallhash. |
459 | * | 459 | * |
460 | * @expectedException LinkNotFoundException | 460 | * @expectedException \Shaarli\Bookmark\Exception\LinkNotFoundException |
461 | */ | 461 | */ |
462 | public function testFilterHashInValid1() | 462 | public function testFilterHashInValid1() |
463 | { | 463 | { |
@@ -468,7 +468,7 @@ class LinkDBTest extends \PHPUnit\Framework\TestCase | |||
468 | /** | 468 | /** |
469 | * Test filterHash() with an empty smallhash. | 469 | * Test filterHash() with an empty smallhash. |
470 | * | 470 | * |
471 | * @expectedException LinkNotFoundException | 471 | * @expectedException \Shaarli\Bookmark\Exception\LinkNotFoundException |
472 | */ | 472 | */ |
473 | public function testFilterHashInValid() | 473 | public function testFilterHashInValid() |
474 | { | 474 | { |