HBASE-22893 Change the comment in HBaseClassTestRule to reflect change in default test timeouts (#545)

Signed-off-by: Sakthi <sakthi@apache.org>
This commit is contained in:
ravowlga123 2019-08-27 10:34:01 +02:00 committed by Sakthi
parent c88267202a
commit ec68bf30ba
1 changed files with 1 additions and 1 deletions

View File

@ -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) {