aboutsummaryrefslogtreecommitdiffhomepage
path: root/reader/rss/parser_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'reader/rss/parser_test.go')
-rw-r--r--reader/rss/parser_test.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/reader/rss/parser_test.go b/reader/rss/parser_test.go
index 7d72417..7bf9f75 100644
--- a/reader/rss/parser_test.go
+++ b/reader/rss/parser_test.go
@@ -8,8 +8,6 @@ import (
"bytes"
"testing"
"time"
-
- "github.com/miniflux/miniflux/errors"
)
func TestParseRss2Sample(t *testing.T) {
@@ -564,8 +562,4 @@ func TestParseInvalidXml(t *testing.T) {
if err == nil {
t.Error("Parse should returns an error")
}
-
- if _, ok := err.(errors.LocalizedError); !ok {
- t.Error("The error returned must be a LocalizedError")
- }
}