Browse Source

Fix test/simple/test-repl

v0.7.4-release
Ryan Dahl 14 years ago
parent
commit
665a4e4a1d
  1. 2
      test/simple/test-repl.js

2
test/simple/test-repl.js

@ -169,7 +169,7 @@ function tcp_test() {
{ client: client_tcp, send: 'a += 1\n',
expect: ('12346' + '\n' + prompt_tcp) },
{ client: client_tcp,
send: 'require(\'' + moduleFilename + '\').number\n',
send: 'require(' + JSON.stringify(moduleFilename) + ').number\n',
expect: ('42' + '\n' + prompt_tcp) }
]);
});

Loading…
Cancel
Save