From 5845a91f15b6c660fd8707aaffef212ad380d94c Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Wed, 9 Dec 2020 19:20:19 +0100 Subject: [PATCH] Fixed typos --- src/tests/runnerTeams/team_add+delete.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests/runnerTeams/team_add+delete.spec.ts b/src/tests/runnerTeams/team_add+delete.spec.ts index 8e7233a..0db4afa 100644 --- a/src/tests/runnerTeams/team_add+delete.spec.ts +++ b/src/tests/runnerTeams/team_add+delete.spec.ts @@ -27,7 +27,7 @@ describe('adding org', () => { expect(res2.status).toEqual(200); expect(res2.headers['content-type']).toContain("application/json") }); - it('delete', async () => { + it('delete team', async () => { const res2 = await axios.delete(base + '/api/teams/' + added_team_id); expect(res2.status).toEqual(200); expect(res2.headers['content-type']).toContain("application/json") @@ -39,7 +39,7 @@ describe('adding org', () => { "contact": null }); }); - it('check if org really was deleted', async () => { + it('check if team really was deleted', async () => { const res3 = await axios.get(base + '/api/teams/' + added_team_id, { validateStatus: undefined }); expect(res3.status).toEqual(404); expect(res3.headers['content-type']).toContain("application/json")