Skip to content

Commit 7fe8585

Browse files
committed
Fix comments
1 parent 8ee50b0 commit 7fe8585

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pkg/natsreloader/natsreloader_test.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ tls: {
6464
includeTest_0 = `
6565
include nats_0.conf
6666
include nats_1.conf; // semicolon terminated
67-
include "nats_2.conf" // quoted
68-
include "nats_3.conf"; // quoted and semicolon terminated
69-
include 'nats_4.conf' // are single quotes valid in nats conf? if so also need this
70-
include 'nats_5.conf'; // are single quotes valid in nats conf? if so also need this
71-
include $NATS; // ignore, this is a variable. let's not worry about variable interpolation
72-
include "$NATS_6.conf" // don't ignore, this is a string not a variable
67+
include "nats_2.conf" // double-quoted
68+
include "nats_3.conf"; // double-quoted and semicolon terminated
69+
include 'nats_4.conf' // single-quoted
70+
include 'nats_5.conf'; // single-quoted and semicolon terminated
71+
include $NATS; // ignore variable
72+
include "$NATS_6.conf" // filename starting with $
7373
include includeTest_1.conf
7474
`
7575
includeTest_1 = `

0 commit comments

Comments
 (0)