Skip to content

Commit

Permalink
renamed java checks
Browse files Browse the repository at this point in the history
  • Loading branch information
vdiez committed Nov 27, 2024
1 parent afab67c commit 030aab3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ void test() {
List<Class<? extends JavaScriptCheck>> checks = CheckList.getAllChecks();

for (Class<? extends JavaScriptCheck> cls : checks) {
if (!cls.getSimpleName().equals("ParsingErrorCheck") && !isEslintBasedCheck(cls)) {
if (!cls.getSimpleName().equals("S2260") && !isEslintBasedCheck(cls)) {
String testName = '/' + cls.getName().replace('.', '/') + "Test.class";
assertThat(getClass().getResource(testName))
.overridingErrorMessage("No test for " + cls.getSimpleName())
Expand Down

0 comments on commit 030aab3

Please sign in to comment.