diff options
Diffstat (limited to 'server/tests')
-rw-r--r-- | server/tests/feeds/feeds.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/feeds/feeds.ts b/server/tests/feeds/feeds.ts index 24a518342..74cbaeb6d 100644 --- a/server/tests/feeds/feeds.ts +++ b/server/tests/feeds/feeds.ts | |||
@@ -274,8 +274,8 @@ describe('Test syndication feeds', () => { | |||
274 | 274 | ||
275 | const jsonObj = JSON.parse(json) | 275 | const jsonObj = JSON.parse(json) |
276 | expect(jsonObj.items.length).to.be.equal(2) | 276 | expect(jsonObj.items.length).to.be.equal(2) |
277 | expect(jsonObj.items[0].html_content).to.equal('super comment 2') | 277 | expect(jsonObj.items[0].html_content).to.contain('<p>super comment 2</p>') |
278 | expect(jsonObj.items[1].html_content).to.equal('super comment 1') | 278 | expect(jsonObj.items[1].html_content).to.contain('<p>super comment 1</p>') |
279 | } | 279 | } |
280 | }) | 280 | }) |
281 | 281 | ||