Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,8 @@ public void testTLSChannelCounters() throws Exception {
.append("bookie_")
.append(bookie.getBookieId().toString()
.replace('.', '_')
.replace('-', '_'))
.replace('-', '_')
.replace(":", "_"))
.append(".");

// check stats on TLS enabled client
Expand Down Expand Up @@ -996,7 +997,8 @@ public void testHandshakeFailure() throws Exception {
.append("bookie_")
.append(bookie.getBookieId().toString()
.replace('.', '_')
.replace('-', '_'))
.replace('-', '_')
.replace(":", "_"))
.append(".");

assertEquals("TLS handshake failure expected", 1,
Expand Down