Skip to content

Commit

Permalink
Lint fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
plural committed Dec 14, 2024
1 parent 8750607 commit bcddbcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/validate_v2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -475,10 +475,10 @@ describe('Restrictions', () => {
});

it('are present in format files', () => {
let restrictionIdsFromFormats = new Set<string>();
const restrictionIdsFromFormats = new Set<string>();

// Get all formats and their listed snapshots.
formatsByFilename.forEach((format, file) => {
formatsByFilename.forEach((format) => {
format.snapshots.forEach(snapshot => {
if ('restriction_id' in snapshot) {
restrictionIdsFromFormats.add(snapshot.restriction_id);
Expand Down

0 comments on commit bcddbcb

Please sign in to comment.