projects
/
platform
/
upstream
/
nodejs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a177f55
)
test: fix function name typo
author
Ben Noordhuis
<info@bnoordhuis.nl>
Fri, 17 Aug 2012 11:44:25 +0000
(13:44 +0200)
committer
Ben 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
patch
|
blob
|
history
diff --git
a/test/simple/test-domain-timers.js
b/test/simple/test-domain-timers.js
index
f22b0b7
..
388673c
100644
(file)
--- a/
test/simple/test-domain-timers.js
+++ b/
test/simple/test-domain-timers.js
@@
-45,7
+45,7
@@
immediated.on('error', function(e) {
});
immediated.run(function() {
- setImmed
ai
te(function() {
+ setImmed
ia
te(function() {
throw new Error('Immediate Error');
});
});