mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-03-04 19:41:16 +01:00
fix db.incrObjectFieldBy for mongo
convert string to int
This commit is contained in:
@@ -347,7 +347,7 @@ describe('Hash methods', function() {
|
||||
|
||||
it('should set an objects field to 5 if object does not exist', function(done) {
|
||||
db.incrObjectFieldBy('testObject16', 'field1', 5, function(err, newValue) {
|
||||
assert.equal(err, null);
|
||||
assert.ifError(err);
|
||||
assert.equal(arguments.length, 2);
|
||||
assert.equal(newValue, 5);
|
||||
done();
|
||||
@@ -356,12 +356,20 @@ describe('Hash methods', function() {
|
||||
|
||||
it('should increment an object fields by passed in value and return it', function(done) {
|
||||
db.incrObjectFieldBy('testObject15', 'age', 11, function(err, newValue) {
|
||||
assert.equal(err, null);
|
||||
assert.ifError(err);
|
||||
assert.equal(arguments.length, 2);
|
||||
assert.equal(newValue, 111);
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it('should increment an object fields by passed in value and return it', function(done) {
|
||||
db.incrObjectFieldBy('testObject15', 'age', '11', function(err, newValue) {
|
||||
assert.ifError(err);
|
||||
assert.equal(newValue, 122);
|
||||
done();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user