Skip to content

Commit

Permalink
Fix lint issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
TwitchBronBron committed Jul 2, 2024
1 parent 0c1da8b commit 2e54661
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bsc-plugin/src/lib/rooibos/TestSuite.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as path from 'path';
import * as path from 'path';
import type { AstEditor, BrsFile, ClassStatement } from 'brighterscript';

import { diagnosticNodeTestIllegalNode, diagnosticNodeTestRequiresNode } from '../utils/Diagnostics';
Expand Down
3 changes: 1 addition & 2 deletions bsc-plugin/src/plugin.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2019,7 +2019,7 @@ describe('RooibosPlugin', () => {
`);
program.validate();
let files = [...Object.values(program.files)].map(x => ({ src: x.srcPath, dest: x.pkgPath }));
expect(program.getDiagnostics().map(x=> x.message)).to.eql([`Cannot find name 'BaseTestClass'`]);
expect(program.getDiagnostics().map(x => x.message)).to.eql([`Cannot find name 'BaseTestClass'`]);
});
});

Expand Down Expand Up @@ -2366,4 +2366,3 @@ function getTestSubContents() {
);
return result;
}

0 comments on commit 2e54661

Please sign in to comment.