Skip to content

Commit

Permalink
Fix CleanUpStressTest failure (#1991)
Browse files Browse the repository at this point in the history
* Fix CleanUpStressTest failure

- fixes #1990
  • Loading branch information
jjohnstn authored Jan 30, 2025
1 parent 28604fa commit 96be922
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ public synchronized void endTest(final Test test) {
* Extract the class name from a String in VA/Java style
*/
public String extractClassName(final String className) {
if (className.startsWith("Default package for")) { // $NON-NLS-1$
if (className.startsWith("Default package for")) { //$NON-NLS-1$
return className.substring(className.lastIndexOf(".") + 1); //$NON-NLS-1$
}
return className;
Expand Down Expand Up @@ -3114,7 +3114,7 @@ protected TestResult start(final String args[]) throws Exception {
}
}
if (testCase.equals("")) { // $NON-NLS-1$
if (testCase.equals("")) { //$NON-NLS-1$
throw new Exception(
"Usage: TestRunner [-wait] testCaseName, where name is the name of the TestCase class"); //$NON-NLS-1$
}
Expand Down

0 comments on commit 96be922

Please sign in to comment.