Skip to content

Commit

Permalink
AB#30158 fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotrk39 committed Sep 10, 2024
1 parent 5552c18 commit c4566ce
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion e2e/portalicious/tests/ManageTeam/RemoveUserFromTeam.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ const expectedInitialAssignedUsers = [
'view-no-pii@example.org',
];
const userToRemove = 'view-no-pii@example.org';
const expectedFinalAssignedUsers = expectedInitialAssignedUsers.filter(email => email !== userToRemove);
const expectedFinalAssignedUsers = expectedInitialAssignedUsers.filter(
(email) => email !== userToRemove,
);

test.beforeEach(async ({ page }) => {
await resetDB(SeedScript.test);
Expand Down

0 comments on commit c4566ce

Please sign in to comment.