From: Ben Noordhuis Date: Wed, 28 Sep 2011 23:11:26 +0000 (+0200) Subject: test: fix typo in error message X-Git-Tag: v0.5.8~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fa44659c66c5a9a692b5d675eda8724308174317;p=platform%2Fupstream%2Fnodejs.git test: fix typo in error message --- diff --git a/test/common.js b/test/common.js index 0bafb58..4e36a48 100644 --- a/test/common.js +++ b/test/common.js @@ -135,7 +135,7 @@ process.on('exit', function() { if (!found) { console.error('Unknown global: %s', x); - assert.ok(false, 'Unknown global founded'); + assert.ok(false, 'Unknown global found'); } } });