Skip to content

Commit 6edcbcd

Browse files
Vabdkisielk
authored andcommitted
Update tests accordingly
1 parent 21f6865 commit 6edcbcd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

feed_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ var atomOutput = `<?xml version="1.0" encoding="UTF-8"?><feed xmlns="http://www.
6161
</entry>
6262
</feed>`
6363

64-
var rssOutput = `<?xml version="1.0" encoding="UTF-8"?><rss version="2.0">
64+
var rssOutput = `<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
6565
<channel>
6666
<title>jmoiron.net blog</title>
6767
<link>http://jmoiron.net/blog</link>
@@ -73,9 +73,9 @@ var rssOutput = `<?xml version="1.0" encoding="UTF-8"?><rss version="2.0">
7373
<title>Limiting Concurrency in Go</title>
7474
<link>http://jmoiron.net/blog/limiting-concurrency-in-go/</link>
7575
<description>A discussion on controlled parallelism in golang</description>
76+
<content:encoded><![CDATA[<p>Go's goroutines make it easy to make <a href="http://collectiveidea.com/blog/archives/2012/12/03/playing-with-go-embarrassingly-parallel-scripts/">embarrassingly parallel programs</a>, but in many &quot;real world&quot; cases resources can be limited and attempting to do everything at once can exhaust your access to them.</p>]]></content:encoded>
7677
<author>Jason Moiron</author>
7778
<pubDate>Wed, 16 Jan 2013 21:52:35 -0500</pubDate>
78-
<content:encoded><![CDATA[<p>Go's goroutines make it easy to make <a href="http://collectiveidea.com/blog/archives/2012/12/03/playing-with-go-embarrassingly-parallel-scripts/">embarrassingly parallel programs</a>, but in many &quot;real world&quot; cases resources can be limited and attempting to do everything at once can exhaust your access to them.</p>]]></content:encoded>
7979
</item>
8080
<item>
8181
<title>Logic-less Template Redux</title>

0 commit comments

Comments
 (0)