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:
parent
532fdb0806
commit
3e0ddb2b87
1 changed files with 1 additions and 1 deletions
|
@ -275,7 +275,7 @@ describe('Database Migration (special functions)', function () {
|
||||||
result.roles.at(7).get('name').should.eql('Scheduler Integration');
|
result.roles.at(7).get('name').should.eql('Scheduler Integration');
|
||||||
|
|
||||||
// Permissions
|
// Permissions
|
||||||
result.permissions.length.should.eql(71);
|
result.permissions.length.should.eql(72);
|
||||||
result.permissions.toJSON().should.be.CompletePermissions();
|
result.permissions.toJSON().should.be.CompletePermissions();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue