Fixed typos

ref #66
This commit is contained in:
2021-01-12 20:14:23 +01:00
parent 4a0f75044f
commit badff85e28
2 changed files with 4 additions and 4 deletions

View File

@@ -51,7 +51,7 @@ describe('adding + getting fixed donation', () => {
expect(res.status).toEqual(200);
expect(res.headers['content-type']).toContain("application/json")
});
it('check if scans was added (no parameter validation)', async () => {
it('check if donation was added (no parameter validation)', async () => {
const res = await axios.get(base + '/api/donations/' + added_donation.id, axios_config);
expect(res.status).toEqual(200);
expect(res.headers['content-type']).toContain("application/json");
@@ -100,7 +100,7 @@ describe('adding + getting distance donation', () => {
expect(res.status).toEqual(200);
expect(res.headers['content-type']).toContain("application/json")
});
it('check if scans was added (no parameter validation)', async () => {
it('check if donation was added (no parameter validation)', async () => {
const res = await axios.get(base + '/api/donations/' + added_donation.id, axios_config);
expect(res.status).toEqual(200);
expect(res.headers['content-type']).toContain("application/json");