Skip to content

Commit efefcb3

Browse files
committedNov 20, 2021
Fix typo in test comment
1 parent 62d1c00 commit efefcb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/jdk/java/lang/Thread/virtual/ThreadAPI.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -1753,7 +1753,7 @@ public void testGetStackTrace3() throws Exception {
17531753
var thread = Thread.ofVirtual().start(() -> {
17541754
try { sel.select(); } catch (Exception e) { }
17551755
});
1756-
Thread.sleep(200); // give him for thread to block
1756+
Thread.sleep(200); // give time for thread to block
17571757
try {
17581758
assertTrue(thread.getState() == Thread.State.RUNNABLE);
17591759
StackTraceElement[] stack = thread.getStackTrace();

0 commit comments

Comments
 (0)
Please sign in to comment.