Skip to content

Commit

Permalink
Fix cherry-pick apache#20595 causes compile issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Technoboy- committed Jul 5, 2023
1 parent aeb3110 commit f9faef8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void testSynchronousGrabCnx() {
return CompletableFuture.completedFuture(null);
});
handler.grabCnx();
Assert.assertEquals(future.join(), i);
Assert.assertEquals(future.join(), Integer.valueOf(i));
}
}

Expand Down

0 comments on commit f9faef8

Please sign in to comment.