diff options
Diffstat (limited to 'test/parsing.js')
-rw-r--r-- | test/parsing.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/parsing.js b/test/parsing.js index 0f0962e..498de9f 100644 --- a/test/parsing.js +++ b/test/parsing.js @@ -5,7 +5,7 @@ var assert = require('assert'); describe('Book parsing', function () { it('should correctly parse the readme', function() { assert.equal(books[1].options.title, 'My Book'); - assert.equal(books[1].options.description, 'Test description'); + assert.equal(books[1].options.description, 'Test description'); }); it('should correctly parse the readme with asciidoc', function() { @@ -21,7 +21,7 @@ describe('Book parsing', function () { assert.equal(LEXED.chapters[0].introduction, true); assert.equal(LEXED.chapters[0].external, false); - assert.equal(LEXED.chapters[1].path, 'test.md'); + assert.equal(LEXED.chapters[1].path, 'test.md'); assert.equal(LEXED.chapters[1].exists, false); assert.equal(LEXED.chapters[1].introduction, false); assert.equal(LEXED.chapters[1].external, false); |