Skip to content

Commit 3169a68

Browse files
committed
Remove sysout
1 parent 58cd0be commit 3169a68

File tree

1 file changed

+1
-12
lines changed

1 file changed

+1
-12
lines changed

src/test/java/com/rabbitmq/stream/impl/AuthenticationTest.java

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -134,18 +134,7 @@ void updateSecretShouldSucceedWithNewCorrectPassword() {
134134
try {
135135
addUser(username, password);
136136
setPermissions(username, "/", "^stream.*$");
137-
Client client =
138-
cf.get(
139-
new Client.ClientParameters()
140-
.username("stream")
141-
.password(username)
142-
.shutdownListener(
143-
new Client.ShutdownListener() {
144-
@Override
145-
public void handle(Client.ShutdownContext context) {
146-
System.out.println("shutdown");
147-
}
148-
}));
137+
Client client = cf.get(new Client.ClientParameters().username("stream").password(username));
149138
changePassword(username, newPassword);
150139
// OK
151140
client.authenticate(credentialsProvider(username, newPassword));

0 commit comments

Comments
 (0)