diff --git a/kyuubi-common/src/test/scala/org/apache/kyuubi/TestUtils.scala b/kyuubi-common/src/test/scala/org/apache/kyuubi/TestUtils.scala index fb0ce6905..cd4ecc2d4 100644 --- a/kyuubi-common/src/test/scala/org/apache/kyuubi/TestUtils.scala +++ b/kyuubi-common/src/test/scala/org/apache/kyuubi/TestUtils.scala @@ -50,8 +50,8 @@ object TestUtils { line = reader.readLine() } reader.close() - val hint = s"$markdown out of date, please update doc with build/mvn test" + - s" -DwildcardSuites=$agent" + val hint = s"$markdown out of date, please update doc with " + + s"KYUUBI_UPDATE=1 build/mvn clean install -Pspark-provided -DwildcardSuites=$agent" assert(newOutput.size === expected.size, hint) newOutput.zip(expected).foreach { case (out, in) => assert(out === in, hint) }