Skip to content

Commit

Permalink
SINT: fix typo in output for disabled test
Browse files Browse the repository at this point in the history
  • Loading branch information
guusdk committed Mar 14, 2024
1 parent e504bc2 commit f4110ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ private void runTests(Set<Class<? extends AbstractSmackIntTest>> classes)
}

if (config.isClassDisabled(testClass)) {
DisabledTestClass disabledTestClass = new DisabledTestClass(testClass, "Skipping test class " + testClassName + " because it is disalbed");
DisabledTestClass disabledTestClass = new DisabledTestClass(testClass, "Skipping test class " + testClassName + " because it is disabled");
testRunResult.disabledTestClasses.add(disabledTestClass);
continue;
}
Expand Down

0 comments on commit f4110ec

Please sign in to comment.