Skip to content

Commit a3a6ffa

Browse files
author
Simon MacMullen
committed
s/no-permission/none/g
1 parent cb6760d commit a3a6ffa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/src/com/rabbitmq/client/test/server/Permissions.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ protected void withNames(WithName action)
116116
action.with("configure");
117117
action.with("write");
118118
action.with("read");
119-
action.with("no-permission");
119+
action.with("none");
120120
}
121121

122122
public void testAuth()
@@ -333,7 +333,7 @@ protected void runConfigureTest(WithName test)
333333
runTest(true, "configure-me", test);
334334
runTest(false, "write-me", test);
335335
runTest(false, "read-me", test);
336-
runTest(false, "no-permission", test);
336+
runTest(false, "none", test);
337337
}
338338

339339
protected void runTest(boolean expC, boolean expW, boolean expR, boolean expN,
@@ -343,7 +343,7 @@ protected void runTest(boolean expC, boolean expW, boolean expR, boolean expN,
343343
runTest(expC, "configure", test);
344344
runTest(expW, "write", test);
345345
runTest(expR, "read", test);
346-
runTest(expN, "no-permission", test);
346+
runTest(expN, "none", test);
347347
}
348348

349349
protected void runTest(boolean exp, String name, WithName test)

0 commit comments

Comments
 (0)