Cleaned up some indentation

This commit is contained in:
Gregory Campbell
2021-11-25 21:23:42 -05:00
parent 3ce1a5a69b
commit 0c35fa1ddc
+6 -6
View File
@@ -19,12 +19,12 @@ describe('POST /msg/:id', function () {
it('respond with 201 created', function (done) { it('respond with 201 created', function (done) {
request(app) request(app)
.post('/msg/1') .post('/msg/1')
.type('form') .type('form')
.send(data) .send(data)
.set('Accept', 'application/json') .set('Accept', 'application/json')
.expect('Content-Type', /json/) .expect('Content-Type', /json/)
.expect(201, done); .expect(201, done);
}); });
it('respond with 400 not updated', function (done) { it('respond with 400 not updated', function (done) {