Merge pull request #173 from lchski/fix-assert-call

Use properly formatted assert() statement for send() on server
This commit is contained in:
Yoshua Wuyts
2016-07-16 23:11:53 +02:00
committed by GitHub
+1 -1
View File
@@ -47,7 +47,7 @@ function choo (opts) {
function createSend () { function createSend () {
return function send () { return function send () {
assert.fail('choo: send() cannot be called from Node') assert.ok(false, 'choo: send() cannot be called from Node')
} }
} }
} }