Skip to content

Commit

Permalink
HBASE-22893 Change the comment in HBaseClassTestRule to reflect chang…
Browse files Browse the repository at this point in the history
…e in default test timeouts (#545)

Signed-off-by: Sakthi <sakthi@apache.org>
  • Loading branch information
rabi-kumar authored and the-sakthi committed Aug 27, 2019
1 parent c882672 commit ec68bf3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ private static long getTimeoutInSeconds(Class<?> clazz) {
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) {
Expand Down

0 comments on commit ec68bf3

Please sign in to comment.