mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-07-20 07:32:01 +02:00
fix: #8992, set email:confirmed for first admin user
This commit is contained in:
@@ -471,7 +471,7 @@ describe('Hash methods', function () {
|
||||
db.incrObjectField('testObject12', 'field1', function (err, newValue) {
|
||||
assert.equal(err, null);
|
||||
assert.equal(arguments.length, 2);
|
||||
assert.equal(newValue, 1);
|
||||
assert.strictEqual(newValue, 1);
|
||||
done();
|
||||
});
|
||||
});
|
||||
@@ -480,7 +480,7 @@ describe('Hash methods', function () {
|
||||
db.incrObjectField('testObject11', 'age', function (err, newValue) {
|
||||
assert.equal(err, null);
|
||||
assert.equal(arguments.length, 2);
|
||||
assert.equal(newValue, 100);
|
||||
assert.strictEqual(newValue, 100);
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user