@@ -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