summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/plugins.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/plugins.js b/test/plugins.js
index 8207663..172e00c 100644
--- a/test/plugins.js
+++ b/test/plugins.js
@@ -168,11 +168,11 @@ describe('Plugins', function() {
});
it('should correctly normalize block', function() {
- blocks.hello.exec({ body: 'World' }).should.equal('Hello World!');
+ blocks.hello.process({ body: 'World' }).should.equal('Hello World!');
});
it('should correctly set contexts for filter', function() {
- blocks.testContext.exec({ body: 'Hello' });
+ blocks.testContext.process({ body: 'Hello' });
});
});
});