This is an automated email from the ASF dual-hosted git repository. jinmeiliao pushed a commit to branch feature/GEODE-7665 in repository https://gitbox.apache.org/repos/asf/geode.git
commit 7177dae836a912286fe4f9629c511a7241c33bdf Author: Nabarun Nag <[email protected]> AuthorDate: Mon May 11 16:52:50 2020 -0700 GEODE-7667: Fixing test to include PR clear help text. --- .../internal/cli/GfshParserAutoCompletionIntegrationTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geode-gfsh/src/integrationTest/java/org/apache/geode/management/internal/cli/GfshParserAutoCompletionIntegrationTest.java b/geode-gfsh/src/integrationTest/java/org/apache/geode/management/internal/cli/GfshParserAutoCompletionIntegrationTest.java index 4c29427..3bc6a03 100644 --- a/geode-gfsh/src/integrationTest/java/org/apache/geode/management/internal/cli/GfshParserAutoCompletionIntegrationTest.java +++ b/geode-gfsh/src/integrationTest/java/org/apache/geode/management/internal/cli/GfshParserAutoCompletionIntegrationTest.java @@ -381,7 +381,7 @@ public class GfshParserAutoCompletionIntegrationTest { String hintArgument = "data"; String hintsProvided = gfshParserRule.getCommandManager().obtainHint(hintArgument); String[] hintsProvidedArray = hintsProvided.split(lineSeparator()); - assertThat(hintsProvidedArray.length).isEqualTo(17); + assertThat(hintsProvidedArray.length).isEqualTo(18); assertThat(hintsProvidedArray[0]) .isEqualTo("User data as stored in regions of the Geode distributed system."); }
