typo correction

This commit is contained in:
Carlos Jimenez 2018-09-27 13:13:02 +02:00
parent 46a62854d6
commit 0f2b19a4eb
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ describe('ticket deleted()', () => {
await app.models.TicketTracking.create({ticketFk: ticket.id, stateFk: 3});
});
it('should make the ticket is not deleted yet', async() => {
it('should make sure the ticket is not deleted yet', async() => {
ticket = await app.models.Ticket.findOne({where: {id: 1}});
expect(ticket.isDeleted).toEqual(false);