0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Fixed fixtures permission count in migration test

no issue

- We added 2 new permissions(backupContent and publish) to fixtures recently but the count was only increased by 1 in tests
This commit is contained in:
Rish 2019-08-08 09:20:19 +05:30
parent 532fdb0806
commit 3e0ddb2b87

View file

@ -275,7 +275,7 @@ describe('Database Migration (special functions)', function () {
result.roles.at(7).get('name').should.eql('Scheduler Integration');
// Permissions
result.permissions.length.should.eql(71);
result.permissions.length.should.eql(72);
result.permissions.toJSON().should.be.CompletePermissions();
});
});