File tree Expand file tree Collapse file tree 1 file changed +10
-14
lines changed
tests/integration/test_keeper_auth Expand file tree Collapse file tree 1 file changed +10
-14
lines changed Original file line number Diff line number Diff line change @@ -401,21 +401,17 @@ def test_partial_auth(started_cluster, get_zk):
401401 finally :
402402 auth_connection .delete ("/test_partial_acl/subnode" )
403403 auth_connection .delete ("/test_partial_acl" )
404-
405- auth_connection .set_acls (
406- "/test_partial_acl_delete" ,
407- acls = [
408- make_acl (
409- "auth" ,
410- "" ,
411- read = True ,
412- write = True ,
413- create = True ,
414- delete = True ,
415- admin = True ,
416- )
417- ],
404+ acl = make_acl (
405+ "auth" ,
406+ "" ,
407+ read = True ,
408+ write = True ,
409+ create = True ,
410+ delete = True ,
411+ admin = True ,
418412 )
413+ auth_connection .set_acls ("/test_partial_acl_delete" , acls = [acl ])
414+ auth_connection .set_acls ("/test_partial_acl_delete/subnode" , acls = [acl ])
419415 auth_connection .delete ("/test_partial_acl_delete/subnode" )
420416 auth_connection .delete ("/test_partial_acl_delete" )
421417 zk_stop_and_close (auth_connection )
You can’t perform that action at this time.
0 commit comments