0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-15 03:01:37 -05:00

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 () {