diff --git a/test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace013.java b/test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace013.java
index 34c6aed046c..c25f7777c15 100644
--- a/test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace013.java
+++ b/test/hotspot/jtreg/vmTestbase/nsk/stress/strace/strace013.java
@@ -32,14 +32,9 @@
* DESCRIPTION
* The test runs many threads, that recursively invoke a pure java method.
* After arriving at defined depth of recursion, each thread is switched to
- * waits for a monitor. Then the test calls java.lang.Thread.getStackTrace()
+ * wait on a monitor. Then the test calls java.lang.Thread.getStackTrace()
* and java.lang.Thread.getAllStackTraces() methods and checks their results.
- * The test fails if:
- * - amount of stack trace elements and stack trace elements themselves are
- * the same for both methods;
- * - there is at least one element corresponding to invocation of unexpected
- * method. Expected methods are Thread.sleep(), Thread.run() and the
- * recursive method.
+ * The test fails if the stacks for each thread do not match.
*
* @library /vmTestbase
* /test/lib
@@ -55,22 +50,26 @@ import java.io.PrintStream;
import java.util.Map;
/**
- * The test runs THRD_COUNT instances of strace010Thread,
+ * The test runs THRD_COUNT instances of strace013Thread,
* that recursively invoke a pure java method. After arriving at defined depth
- * DEPTH of recursion, each thread is switched to wait a monitor.
+ * DEPTH of recursion, each thread is switched to wait on a monitor.
* Then the test calls java.lang.Thread.getStackTrace() and
* java.lang.Thread.getAllStackTraces() methods and checks their results.
*
*
It is expected that these methods return the same stack traces. Each stack frame
- * for both stack traces must be corresponded to invocation of one of the methods
+ * for both stack traces correspond to invocation of one of the methods
* defined by the EXPECTED_METHODS array.