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 636b574..bde8be3 100644 --- a/test/parsing.js +++ b/test/parsing.js @@ -31,8 +31,8 @@ describe('Book parsing', function () { it('should correctly parse files', function() { var FILES = book1.files; - assert.equal(FILES.length, 4); - assert.equal(_.difference(FILES, [ 'GLOSSARY.md', 'README.md', 'SUMMARY.md', 'intro.md' ]).length, 0); + assert.equal(FILES.length, 2); + assert.equal(_.difference(FILES, [ 'intro.md', 'README.md' ]).length, 0); }); it('should correctly parse the languages', function() { |