Skip to content

Commit

Permalink
hopefully fixed test
Browse files Browse the repository at this point in the history
  • Loading branch information
markwpearce committed Jun 28, 2024
1 parent 656804f commit db4261c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DiagnosticFilterer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ describe('DiagnosticFilterer', () => {
getDiagnostic('diagCode', `${rootDir}/components/utils.brs`, `${rootDir}/source/remove/utils2.brs`) //remove
]);
expect(resultDiagnostics.map(x => x.code)).to.eql(['diagCode']);
expect(resultDiagnostics.map(x => x.file.srcPath)).to.eql([`${rootDir}/source/common.brs`]);
expect(resultDiagnostics.map(x => x.file.srcPath)).to.eql([s`${rootDir}/source/common.brs`]);
});

it('respects order of ignores with negative globs', () => {
Expand Down

0 comments on commit db4261c

Please sign in to comment.