diff options
Diffstat (limited to 'internal/reader/opml/parser_test.go')
-rw-r--r-- | internal/reader/opml/parser_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/reader/opml/parser_test.go b/internal/reader/opml/parser_test.go index 4dc855e6..9210c178 100644 --- a/internal/reader/opml/parser_test.go +++ b/internal/reader/opml/parser_test.go @@ -33,7 +33,7 @@ func TestParseOpmlWithoutCategories(t *testing.T) { ` var expected SubcriptionList - expected = append(expected, &Subcription{Title: "CNET News.com", FeedURL: "http://news.com.com/2547-1_3-0-5.xml", SiteURL: "http://news.com.com/"}) + expected = append(expected, &Subcription{Title: "CNET News.com", FeedURL: "http://news.com.com/2547-1_3-0-5.xml", SiteURL: "http://news.com.com/", Description: "Tech news and business reports by CNET News.com. Focused on information technology, core topics include computers, hardware, software, networking, and Internet media."}) subscriptions, err := Parse(bytes.NewBufferString(data)) if err != nil { |