Skip to content

Commit

Permalink
#185 typo
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor256 committed Nov 3, 2022
1 parent 614eb9a commit 8c91e37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/com/jcabi/xml/XSLDocumentTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ void transformsInManyThreads() throws Exception {
final CountDownLatch latch = new CountDownLatch(1);
final int total = 10;
final ExecutorService exec = Executors.newFixedThreadPool(total);
for (int task = 0; task < 10; ++task) {
for (int task = 0; task < total; ++task) {
exec.submit(
() -> {
latch.await();
Expand Down

0 comments on commit 8c91e37

Please sign in to comment.