Skip to content

Commit 8e3c937

Browse files
Fix bug in script
1 parent 787f250 commit 8e3c937

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

selenium/test/authnz-msg-protocols/amqp10.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ describe('Having AMQP 1.0 protocol enabled and the following auth_backends: ' +
1717
let password = process.env.RABBITMQ_AMQP_PASSWORD
1818
let usemtls = process.env.AMQP_USE_MTLS
1919
let amqpClientCommand = "npm run amqp10_roundtriptest" +
20-
(usemtls ? "" : username + " " + password)
20+
(usemtls ? "" : " " + username + " " + password)
2121

2222
before(function () {
2323
if (backends.includes("http") && username.includes("http")) {

0 commit comments

Comments
 (0)