diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-01-18 14:26:32 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-01-18 14:26:32 -0800 |
commit | 2ec4cd552501b895c83c6871951c1a6256288c48 (patch) | |
tree | c0b290b792ac99a2f234d89afe56fc7435c679e5 /test/simple | |
parent | b8879d64dd4280915e47f17142e38ce9bb220bde (diff) | |
download | node-new-2ec4cd552501b895c83c6871951c1a6256288c48.tar.gz |
factor linklist code into own file
Diffstat (limited to 'test/simple')
-rw-r--r-- | test/simple/test-timers-linked-list.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/simple/test-timers-linked-list.js b/test/simple/test-timers-linked-list.js index 0d9a2b9b31..26bf0525ab 100644 --- a/test/simple/test-timers-linked-list.js +++ b/test/simple/test-timers-linked-list.js @@ -1,6 +1,6 @@ var common = require('../common'); var assert = require('assert'); -var L = require('timers').linkedList; +var L = require('_linklist'); var list = { name: "list" }; |