mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 11:55:03 +03: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:
parent
e292bf3258
commit
ee5753a6b7
@ -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 () {
|
||||
|
Loading…
Reference in New Issue
Block a user