diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2010-08-13 08:13:54 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-08-13 08:13:54 -0700 |
commit | 03123435e0c0730139aef147a6278fb068d2c364 (patch) | |
tree | 75fe90e472866cc358d232cc02b8f8fe6120e974 /test | |
parent | 4bbab1434635ada79b5a82a06872a15870213a52 (diff) | |
download | node-new-03123435e0c0730139aef147a6278fb068d2c364.tar.gz |
Remove platform specific asserts
Diffstat (limited to 'test')
-rw-r--r-- | test/simple/test-module-loading.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/simple/test-module-loading.js b/test/simple/test-module-loading.js index 7a62d76cde..9a53a2d3d7 100644 --- a/test/simple/test-module-loading.js +++ b/test/simple/test-module-loading.js @@ -138,7 +138,6 @@ try { require(loadOrder + 'file3'); } catch (e) { // Not a real .node module, but we know we require'd the right thing. - assert.ok(e.message.match(/^dlopen/)); assert.ok(e.message.match(/file3\.node/)); } assert.equal(require(loadOrder + 'file4').file4, 'file4.reg', msg); @@ -147,7 +146,6 @@ assert.equal(require(loadOrder + 'file6').file6, 'file6/index.js', msg); try { require(loadOrder + 'file7'); } catch (e) { - assert.ok(e.message.match(/^dlopen/)); assert.ok(e.message.match(/file7\/index\.node/)); } assert.equal(require(loadOrder + 'file8').file8, 'file8/index.reg', msg); |