diff options
Diffstat (limited to 'test/plugins.js')
-rw-r--r-- | test/plugins.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/plugins.js b/test/plugins.js index 560a779..0f826d2 100644 --- a/test/plugins.js +++ b/test/plugins.js @@ -110,9 +110,9 @@ describe('Plugins', function () { it('should correctly extend template blocks with sub-blocks', function(done) { qdone( - books[0].template.renderString('{% test3join %}hello{% also %}the{% also %}world{% endtest3join %}') + books[0].template.renderString('{% test3join separator=";" %}hello{% also %}world{% endtest3join %}') .then(function(content) { - assert.equal(content, "hello the world"); + assert.equal(content, "hello;world"); }), done ); |