aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Philipp Wollermann <philwo@google.com>2015-09-08 16:56:56 +0000
committerGravatar Damien Martin-Guillerez <dmarting@google.com>2015-09-08 17:26:25 +0000
commit3fd49d60855807501ccf544f4a31b974d28aaf53 (patch)
tree21d31352fcb2f726e48cdf9bfb84a6c526c8a6cb /src
parentf3a2032307187d5e1f229426e0d571e349c50863 (diff)
Better comment for TestSpec.flaky().
-- MOS_MIGRATED_REVID=102565057
Diffstat (limited to 'src')
-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;
}