File tree 1 file changed +5
-7
lines changed
1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -285,13 +285,7 @@ async def test_update_connection_password_connection_lost_before_password_update
285
285
management_client , USERNAME , NEW_PASSWORD
286
286
)
287
287
288
- result = await acl_glide_client .update_connection_password (
289
- NEW_PASSWORD , immediate_auth = False
290
- )
291
-
292
- assert result == OK
293
-
294
- # ensure client disconnection and password update
288
+ # ensure client disconnection
295
289
await asyncio .sleep (2 )
296
290
297
291
with pytest .raises (RequestError ):
@@ -317,6 +311,10 @@ async def test_update_connection_password_replace_password_immediateAuth_acl_use
317
311
318
312
assert result == OK
319
313
314
+ assert await acl_glide_client .set ("test_key" , "test_value" ) == OK
315
+ value = await acl_glide_client .get ("test_key" )
316
+ assert value == b"test_value"
317
+
320
318
@pytest .mark .parametrize ("cluster_mode" , [True , False ])
321
319
@pytest .mark .parametrize ("protocol" , [ProtocolVersion .RESP2 , ProtocolVersion .RESP3 ])
322
320
async def test_update_connection_password_auth_non_valid_pass_acl_user (
You can’t perform that action at this time.
0 commit comments