fix: #8992, set email:confirmed for first admin user

This commit is contained in:
Barış Soner Uşaklı
2020-11-28 14:43:28 -05:00
parent 6f21832db7
commit 7f5efc3e93
2 changed files with 7 additions and 4 deletions

View File

@@ -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();
});
});