Fixed minor linting issue in member-count tests

- we don't need to return this value, and eslint complains about it if
  we do
This commit is contained in:
Daniel Lockyer 2022-07-25 11:25:14 +02:00
parent e292bf3258
commit ee5753a6b7
No known key found for this signature in database
GPG Key ID: D21186F0B47295AD

View File

@ -38,7 +38,7 @@ describe('Member Count', function () {
meta: {totals: {paid: 1000, free: 500, comped: 500}}
}};
const members = await getMemberStats.call(meta);
return should.equal(members.total, 2000);
should.equal(members.total, 2000);
});
it('should return rounded numbers in correct format', function () {