Skip to content

Commit 0d51381

Browse files
michaelklishinmergify[bot]
authored andcommitted
Selenium: keep comments above the line that's being commented on
(cherry picked from commit 2319ec6)
1 parent 0e25713 commit 0d51381

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

selenium/test/amqp.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ module.exports = {
5454
})
5555
log("Opening amqp connection using " + JSON.stringify(connectionOptions,
5656
(key, value) => {
57-
if (key === "key") return undefined; // omit this key
57+
// Omit the private key from the log output.
58+
if (key === "key") return undefined;
5859
return value;
5960
}
6061
))

0 commit comments

Comments
 (0)