HDDS-1645. Change the version of Pico CLI to the latest 3.x release - 3.9.6

Closes #909
This commit is contained in:
S O'Donnell 2019-06-06 15:57:40 +02:00 committed by Márton Elek
parent 0976392502
commit 36757ad6a9
No known key found for this signature in database
GPG Key ID: D51EA8F00EE79B28
2 changed files with 3 additions and 2 deletions

View File

@ -239,7 +239,7 @@ https://maven.apache.org/xsd/maven-4.0.0.xsd">
<dependency>
<groupId>info.picocli</groupId>
<artifactId>picocli</artifactId>
<version>3.5.2</version>
<version>3.9.6</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>

View File

@ -631,7 +631,8 @@ public void testListVolume() throws Exception {
err.reset();
args = new String[] {"volume", "list", url + "/", "--user",
user2, "--length", "invalid-length"};
executeWithError(shell, args, "For input string: \"invalid-length\"");
executeWithError(shell, args, "Invalid value for option " +
"'--length': 'invalid-length' is not an int");
}
@Test