test: fix function name typo
authorBen Noordhuis <info@bnoordhuis.nl>
Fri, 17 Aug 2012 11:44:25 +0000 (13:44 +0200)
committerBen Noordhuis <info@bnoordhuis.nl>
Fri, 17 Aug 2012 11:45:45 +0000 (13:45 +0200)
It doesn't affect the semantics of the test because it checks if that
particular bit of code throws an exception. It does, only it's a SyntaxError.

test/simple/test-domain-timers.js

index f22b0b7..388673c 100644 (file)
@@ -45,7 +45,7 @@ immediated.on('error', function(e) {
 });
 
 immediated.run(function() {
-  setImmedaite(function() {
+  setImmediate(function() {
     throw new Error('Immediate Error');
   });
 });