This is an automated email from the ASF dual-hosted git repository.
chengpan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-kyuubi.git
The following commit(s) were added to refs/heads/master by this push:
new 96f843c [KYUUBI #1332] Fix regenerate document hint
96f843c is described below
commit 96f843c3c0ad4e2d796788f4a3c842e54702e475
Author: Cheng Pan <[email protected]>
AuthorDate: Thu Nov 4 21:57:31 2021 +0800
[KYUUBI #1332] Fix regenerate document hint
### _Why are the changes needed?_
The previous command does not work after #1131.
### _How was this patch tested?_
- [ ] Add some test cases that check the changes thoroughly including
negative and positive cases if possible
- [ ] Add screenshots for manual tests if appropriate
- [ ] [Run
test](https://kyuubi.readthedocs.io/en/latest/develop_tools/testing.html#running-tests)
locally before make a pull request
Closes #1332 from pan3793/hint.
Closes #1332
1c21a54a [Cheng Pan] Fix regenerate document hint
Authored-by: Cheng Pan <[email protected]>
Signed-off-by: Cheng Pan <[email protected]>
---
kyuubi-common/src/test/scala/org/apache/kyuubi/TestUtils.scala | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
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 fb0ce69..cd4ecc2 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) }