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

Fixed linter error

This commit is contained in:
Kevin Ansfield 2022-10-31 12:12:58 +00:00
parent 5bf3fe9cb8
commit b272b34a44

View file

@ -248,7 +248,7 @@ describe('Acceptance: Content', function () {
describe('as contributor', function () {
beforeEach(async function () {
let contributorRole = this.server.create('role', {name: 'Contributor'});
let contributor = this.server.create('user', {roles: [contributorRole]});
this.server.create('user', {roles: [contributorRole]});
return await authenticateSession();
});