Updated notification name and other minor fixes

This commit is contained in:
Keith Holliday
2016-10-25 07:56:43 -05:00
parent 3ec3722038
commit 5b240a1950
7 changed files with 13 additions and 14 deletions

View File

@@ -47,8 +47,7 @@ describe('GET /approvals/group/:groupId', () => {
});
it('gets a list of task that need approval', async () => {
let apporovals = await user.get(`/approvals/group/${guild._id}`);
expect(apporovals[0]._id).to.equal(syncedTask._id);
let approvals = await user.get(`/approvals/group/${guild._id}`);
expect(approvals[0]._id).to.equal(syncedTask._id);
});
});