Skip to content

Commit 6902025

Browse files
committed
missing semicolons
1 parent 2286dac commit 6902025

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

test/UserVotingPermissions.test.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ describe('UserVotingPermissions', function() {
117117
};
118118
let db = {
119119
getSetMembers: sinon.fake.returns(['vote1', 'vote2'])
120-
}
120+
};
121121

122122
let permissions = new UserVotingPermissions(config, db, user, post);
123123
await permissions.hasVotedAuthorTooManyTimesThisMonth();
@@ -132,7 +132,7 @@ describe('UserVotingPermissions', function() {
132132
};
133133
let db = {
134134
getSetMembers: sinon.fake.returns(['vote1', 'vote2', 'vote3', 'vote4', 'vote5', 'vote6', 'vote7', 'vote8', 'vote9', 'vote10'])
135-
}
135+
};
136136

137137
let permissions = new UserVotingPermissions(config, db, user, post);
138138
try {
@@ -153,7 +153,7 @@ describe('UserVotingPermissions', function() {
153153
};
154154
let db = {
155155
getSetMembers: sinon.fake.returns(['vote1', 'vote2'])
156-
}
156+
};
157157

158158
let permissions = new UserVotingPermissions(config, db, user, null);
159159
await permissions.hasVotedTooManyTimesToday();
@@ -167,7 +167,7 @@ describe('UserVotingPermissions', function() {
167167
};
168168
let db = {
169169
getSetMembers: sinon.fake.returns(['vote1', 'vote2', 'vote3', 'vote4', 'vote5'])
170-
}
170+
};
171171

172172
let permissions = new UserVotingPermissions(config, db, user, null);
173173
try {
@@ -333,7 +333,7 @@ describe('UserVotingPermissions', function() {
333333
};
334334
let db = {
335335
getSetMembers: sinon.fake.returns([])
336-
}
336+
};
337337

338338
let permissions = new UserVotingPermissions(config, db, user, null);
339339
await permissions.hasDownvotedTooManyTimesToday();
@@ -347,7 +347,7 @@ describe('UserVotingPermissions', function() {
347347
};
348348
let db = {
349349
getSetMembers: sinon.fake.returns(['vote1', 'vote2', 'vote3', 'vote4', 'vote5'])
350-
}
350+
};
351351

352352
let permissions = new UserVotingPermissions(config, db, user, null);
353353
try {
@@ -366,7 +366,7 @@ describe('UserVotingPermissions', function() {
366366
};
367367
let db = {
368368
getSetMembers: sinon.fake.returns(['vote1', 'vote2', 'vote3', 'vote4', 'vote5'])
369-
}
369+
};
370370

371371
let permissions = new UserVotingPermissions(config, db, user, null);
372372
await permissions.hasDownvotedTooManyTimesToday();

0 commit comments

Comments
 (0)