fix test again

v1.18.x
Barış Soner Uşaklı 8 years ago
parent 46da2daab9
commit a3d65d10f6

@ -925,8 +925,10 @@ describe('User', function () {
socketUser.setModerationNote({ uid: adminUid }, { uid: testUid, note: 'this is a test user' }, function (err) { socketUser.setModerationNote({ uid: adminUid }, { uid: testUid, note: 'this is a test user' }, function (err) {
assert.ifError(err); assert.ifError(err);
db.getSortedSetRevRange('uid:' + testUid + ':moderation:notes', 0, 0, function (err, notes) { db.getSortedSetRevRange('uid:' + testUid + ':moderation:notes', 0, 0, function (err, notes) {
notes = JSON.parse(notes);
assert.ifError(err); assert.ifError(err);
notes = notes.map(function (noteData) {
return JSON.parse(noteData);
});
assert.equal(notes[0].note, 'this is a test user'); assert.equal(notes[0].note, 'this is a test user');
assert.equal(notes[0].uid, adminUid); assert.equal(notes[0].uid, adminUid);
assert(notes[0].timestamp); assert(notes[0].timestamp);

Loading…
Cancel
Save