Skip to content

Commit

Permalink
Update parse nfo metadata test for description
Browse files Browse the repository at this point in the history
  • Loading branch information
advplyr committed Nov 26, 2023
1 parent b4c14fc commit 3d46833
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/server/utils/parsers/parseNfoMetadata.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ describe('parseNfoMetadata', () => {
it('parses description', () => {
const nfoText = 'Book Description\n=========\nThis is a book.\n It\'s good'
const result = parseNfoMetadata(nfoText)
expect(result.description).to.equal('This is a book.\n It\'s good\n')
expect(result.description).to.equal('This is a book.\n It\'s good')
})

it('no value', () => {
Expand Down

0 comments on commit 3d46833

Please sign in to comment.