HDDS-1087. Fix TestDefaultCertificateClient#testSignDataStream. Contributed by Xiaoyu Yao. (#596)
(cherry picked from commit 86d508c7c7
)
This commit is contained in:
parent
34f0ad064d
commit
eeb7d63046
|
@ -152,7 +152,7 @@ public class TestDefaultCertificateClient {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testSignDataStream() throws Exception {
|
public void testSignDataStream() throws Exception {
|
||||||
String data = RandomStringUtils.random(100);
|
String data = RandomStringUtils.random(100, UTF);
|
||||||
// Expect error when there is no private key to sign.
|
// Expect error when there is no private key to sign.
|
||||||
LambdaTestUtils.intercept(IOException.class, "Error while " +
|
LambdaTestUtils.intercept(IOException.class, "Error while " +
|
||||||
"signing the stream",
|
"signing the stream",
|
||||||
|
|
Loading…
Reference in New Issue