Skip to content

Commit

Permalink
Fix unused expression
Browse files Browse the repository at this point in the history
  • Loading branch information
djsmith85 committed Jan 14, 2025
1 parent a1f0433 commit c758319
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions libs/importer/src/services/import.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,9 +267,7 @@ describe("ImportService", () => {
function createCipher(options: Partial<CipherView> = {}) {
const cipher = new CipherView();

// FIXME: Remove when updating file. Eslint update
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
cipher.name;
cipher.name = options.name;
cipher.type = options.type;
cipher.folderId = options.folderId;
cipher.collectionIds = options.collectionIds;
Expand Down

0 comments on commit c758319

Please sign in to comment.