aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/testutil
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/testutil')
-rw-r--r--src/test/java/com/google/devtools/build/lib/testutil/TestSpec.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/testutil/TestSpec.java b/src/test/java/com/google/devtools/build/lib/testutil/TestSpec.java
index 316169c10b..0d793f7145 100644
--- a/src/test/java/com/google/devtools/build/lib/testutil/TestSpec.java
+++ b/src/test/java/com/google/devtools/build/lib/testutil/TestSpec.java
@@ -41,8 +41,8 @@ public @interface TestSpec {
String suite() default "";
/**
- * If the test will pass consistently without outside changes.
- * This should be fixed as soon as possible.
+ * True, if the test will is not dependable because it has a chance to fail regardless of the
+ * code's correctness. If this is the case, the test should be fixed as soon as possible.
*/
boolean flaky() default false;
}