[MINOR][ML] Increase the timeout for StreamingLinearRegressionSuite to 60s

### What changes were proposed in this pull request?

Increase the timeout for StreamingLinearRegressionSuite to 60s to deflake the test.

### Why are the changes needed?

Reduce merge conflict.

### Does this PR introduce _any_ user-facing change?

### How was this patch tested?

Closes #31248 from liangz1/increase-timeout.

Authored-by: Liang Zhang <liang.zhang@databricks.com>
Signed-off-by: Weichen Xu <weichen.xu@databricks.com>
This commit is contained in:
Liang Zhang 2021-01-20 08:26:52 +08:00 committed by Weichen Xu
parent 32dad1d5a6
commit f7ff7ff0a5

View file

@ -31,7 +31,7 @@ class StreamingLinearRegressionSuite
with TestSuiteBase {
// use longer wait time to ensure job completion
override def maxWaitTimeMillis: Int = 20000
override def maxWaitTimeMillis: Int = 60000
// Assert that two values are equal within tolerance epsilon
def assertEqual(v1: Double, v2: Double, epsilon: Double): Unit = {