fix test again

This commit is contained in:
Barış Soner Uşaklı
2017-03-23 16:45:24 +03:00
parent 46da2daab9
commit a3d65d10f6

View File

@@ -925,8 +925,10 @@ describe('User', function () {
socketUser.setModerationNote({ uid: adminUid }, { uid: testUid, note: 'this is a test user' }, function (err) {
assert.ifError(err);
db.getSortedSetRevRange('uid:' + testUid + ':moderation:notes', 0, 0, function (err, notes) {
notes = JSON.parse(notes);
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].uid, adminUid);
assert(notes[0].timestamp);