Skip to content

Commit

Permalink
Fix test-module-load-list.js
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Sep 27, 2011
1 parent c06af22 commit 41d811f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions test/simple/test-module-load-list.js
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -78,25 +78,26 @@ if (!process.features.uv) {
case 'fs': case 'fs':
expected = expected.concat([ expected = expected.concat([
'NativeModule console', 'NativeModule console',
'Binding tty_wrap',
]); ]);
break; break;


case 'tty': case 'tty':
expected = expected.concat([ expected = expected.concat([
'NativeModule console', 'NativeModule console',
'NativeModule tty', 'Binding tty_wrap',
'NativeModule tty_posix', 'NativeModule tty_uv',
'NativeModule net_uv', 'NativeModule net_uv',
'NativeModule timers_uv', 'NativeModule timers_uv',
'Binding timer_wrap', 'Binding timer_wrap',
'NativeModule _linklist', 'NativeModule _linklist'
'Binding pipe_wrap',
]); ]);
break; break;


case 'pipe': case 'pipe':
expected = expected.concat([ expected = expected.concat([
'NativeModule console', 'NativeModule console',
'Binding tty_wrap',
'NativeModule net_uv', 'NativeModule net_uv',
'NativeModule timers_uv', 'NativeModule timers_uv',
'Binding timer_wrap', 'Binding timer_wrap',
Expand Down

0 comments on commit 41d811f

Please sign in to comment.