This commit is contained in:
Wyatt Johnson
2017-11-13 16:08:20 -07:00
parent e090ba9123
commit ef40e9dce5
+2 -2
View File
@@ -75,7 +75,7 @@ describe('services.ActionsService', () => {
expect(retrievedAction).has.property('item_id', comment.id);
});
it('fires the callback sucesfully', async () => {
it('fires the callback successfully', async () => {
const srcAction = {
action_type: 'LIKE',
item_type: 'COMMENTS',
@@ -113,7 +113,7 @@ describe('services.ActionsService', () => {
expect(retrievedAction).is.null;
});
it('fires the callback sucesfully', async () => {
it('fires the callback successfully', async () => {
const spy = sinon.spy();
events.once(ACTIONS_DELETE, spy);