Fix tests when flagging because suspect word.

This commit is contained in:
gaba
2017-01-03 09:37:02 -03:00
parent a02ad69568
commit 5c6df6d481
+3 -2
View File
@@ -225,8 +225,9 @@ describe('/api/v1/comments', () => {
let action = actions[0];
expect(action).to.have.property('item_id', comment.id);
expect(action).to.have.property('field', 'body');
expect(action).to.have.property('detail', 'Matched suspect word filters.');
expect(action).to.have.property('metadata');
expect(action.metadata).to.have.property('field', 'body');
expect(action.metadata).to.have.property('details', 'Matched suspect word filters.');
});
});