You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by sa...@apache.org on 2019/08/27 08:39:45 UTC

[hbase] branch branch-2.1 updated: HBASE-22893 Change the comment in HBaseClassTestRule to reflect change in default test timeouts (#545)

This is an automated email from the ASF dual-hosted git repository.

sakthi pushed a commit to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/hbase.git


The following commit(s) were added to refs/heads/branch-2.1 by this push:
     new e938c44  HBASE-22893 Change the comment in HBaseClassTestRule to reflect change in default test timeouts (#545)
e938c44 is described below

commit e938c448f5aaf9a9553512aec561b0f4669ed9fb
Author: ravowlga123 <42...@users.noreply.github.com>
AuthorDate: Tue Aug 27 10:34:01 2019 +0200

    HBASE-22893 Change the comment in HBaseClassTestRule to reflect change in default test timeouts (#545)
    
    Signed-off-by: Sakthi <sa...@apache.org>
---
 .../src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java b/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java
index c3bef0f..155bd92 100644
--- a/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java
+++ b/hbase-common/src/test/java/org/apache/hadoop/hbase/HBaseClassTestRule.java
@@ -61,7 +61,7 @@ public final class HBaseClassTestRule implements TestRule {
     Category[] categories = clazz.getAnnotationsByType(Category.class);
     for (Class<?> c : categories[0].value()) {
       if (c == SmallTests.class || c == MediumTests.class || c == LargeTests.class) {
-        // All tests have a 10minute timeout.
+        // All tests have a 13 minutes timeout.
         return TimeUnit.MINUTES.toSeconds(13);
       }
       if (c == IntegrationTests.class) {