1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-20 00:08:02 +01:00

Fix typos

This commit is contained in:
Jari Bakken 2014-11-10 17:10:39 +01:00 committed by Ivar Conradi Østhus
parent dbec142f42
commit f17167876e

View File

@ -47,7 +47,7 @@ describe('The api', function () {
.expect(400, done); .expect(400, done);
}); });
it('can not change status of feature toggle that dose not exsist', function (done) { it('can not change status of feature toggle that does not exist', function (done) {
request request
.patch('/features/shouldNotExsist') .patch('/features/shouldNotExsist')
.send({ .send({
@ -58,7 +58,7 @@ describe('The api', function () {
.expect(404, done); .expect(404, done);
}); });
it('can change status of feature toggle that dose exsist', function (done) { it('can change status of feature toggle that does exist', function (done) {
request request
.patch('/features/featureY') .patch('/features/featureY')
.send({ .send({