1
0
Fork 0

Added missing semicolon (#4570)

This commit is contained in:
Michael Hackstein 2018-02-12 14:59:11 +01:00 committed by Jan
parent 79a80558e1
commit 0a57be6863
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ describe('Shard distribution', function () {
// And is followed by a numeric value
const nr = parseInt(shard.slice(1));
expect(nr).to.be.above(0);
return nr
return nr;
};
const sortShardsNumericly = function (l, r) {