Skip to content

Commit 9559ae4

Browse files
committed
fix the lint errors
1 parent 7cd722c commit 9559ae4

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

test/integration/users.test.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,6 @@ describe("Users", function () {
142142
});
143143
});
144144

145-
146145
it("Should return 400 for invalid status value", function (done) {
147146
chai
148147
.request(app)
@@ -168,7 +167,6 @@ describe("Users", function () {
168167
});
169168
});
170169

171-
172170
it("Should return 400 if required roles is missing", function (done) {
173171
chai
174172
.request(app)

test/unit/middlewares/user-validator.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ describe("Middleware | Validators | User", function () {
8686
});
8787
expect(nextSpy.calledOnce).to.be.equal(false);
8888
});
89-
89+
9090
it("Stops the propagation of the next if twitter_id is invalid", async function () {
9191
const req = {
9292
body: {

0 commit comments

Comments
 (0)