diff options
author | ArthurHoaro <arthur@hoa.ro> | 2020-09-29 18:41:21 +0200 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2020-09-29 18:57:25 +0200 |
commit | f447edb73b1bcb52e86286467d3ec7b7bdc29948 (patch) | |
tree | 3cd7f6ddc4e227f901fb8bd11d75d6307c713b1a /tests/netscape/BookmarkExportTest.php | |
parent | ab58f2542072e6bf34acd862f6cfed84b33feb29 (diff) | |
download | Shaarli-f447edb73b1bcb52e86286467d3ec7b7bdc29948.tar.gz Shaarli-f447edb73b1bcb52e86286467d3ec7b7bdc29948.tar.zst Shaarli-f447edb73b1bcb52e86286467d3ec7b7bdc29948.zip |
Fix missing @expectedException convertion
Diffstat (limited to 'tests/netscape/BookmarkExportTest.php')
-rw-r--r-- | tests/netscape/BookmarkExportTest.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/netscape/BookmarkExportTest.php b/tests/netscape/BookmarkExportTest.php index adf62f4f..9b95ccc9 100644 --- a/tests/netscape/BookmarkExportTest.php +++ b/tests/netscape/BookmarkExportTest.php | |||
@@ -77,10 +77,10 @@ class BookmarkExportTest extends TestCase | |||
77 | 77 | ||
78 | /** | 78 | /** |
79 | * Attempt to export an invalid link selection | 79 | * Attempt to export an invalid link selection |
80 | * @expectedException Exception | ||
81 | */ | 80 | */ |
82 | public function testFilterAndFormatInvalid() | 81 | public function testFilterAndFormatInvalid() |
83 | { | 82 | { |
83 | $this->expectException(\Exception::class); | ||
84 | $this->expectExceptionMessageRegExp('/Invalid export selection/'); | 84 | $this->expectExceptionMessageRegExp('/Invalid export selection/'); |
85 | 85 | ||
86 | $this->netscapeBookmarkUtils->filterAndFormat( | 86 | $this->netscapeBookmarkUtils->filterAndFormat( |