Skip to content

Commit d5ffd8c

Browse files
committed
1.3.0 is the culprit for the failing tests on node v0.6 I'm not sure if this is because of the version or anything else breaking the module (like async or something..). `should` appears undefined..
1 parent d5bcbd1 commit d5ffd8c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"sqlite3" : "2.1.7",
4848
"async" : "*",
4949
"mocha" : "1.12.1",
50-
"should" : "1.3.0",
50+
"should" : "1.2.2",
5151
"mongodb" : "1.3.19"
5252
},
5353
"optionalDependencies": {}

test/support/spec_helper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module.exports.dropSync = function (models, done) {
2828
});
2929
}, function (err) {
3030
if (common.protocol() != 'sqlite') {
31-
should.equal(err, null);
31+
should.not.exist(err);
3232
}
3333
done(err);
3434
});

0 commit comments

Comments
 (0)