Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jul 30, 2024
2 parents 5bf5881 + 6fefb61 commit d5b0b89
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public Integer call() {
for (int r = 0; r < HIT; ++r) {
final JexlScript script = jexl.createScript(Integer.toString(ctl));
final Object result = script.execute(null);
assert ((Number) result).intValue() == ctl;
assertEquals(((Number) result).intValue(), ctl);
count += 1;
}
}
Expand Down Expand Up @@ -118,7 +118,7 @@ void stop() {
/** Number of concurrent threads. */
private static final int THREADS = 8;

/** Teh logger. */
/** The logger. */
Log LOGGER = LogFactory.getLog(getClass());

/**
Expand Down

0 comments on commit d5b0b89

Please sign in to comment.