We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccd15b3 commit f0f65bdCopy full SHA for f0f65bd
tests/unit/test_cli.py
@@ -384,6 +384,7 @@ def test_alias(ws):
384
385
def test_save_storage_and_principal_azure_no_azure_cli(ws):
386
ws.config.is_azure = True
387
+ ws.config.is_aws = False
388
ctx = WorkspaceContext(ws)
389
with pytest.raises(ValueError):
390
principal_prefix_access(ws, ctx, False)
@@ -413,7 +414,9 @@ def test_save_storage_and_principal_aws(ws, acc_client):
413
414
415
416
def test_save_storage_and_principal_gcp(ws):
- ctx = WorkspaceContext(ws).replace(is_aws=False, is_azure=False)
417
+ ws.config.is_azure = False
418
419
+ ctx = WorkspaceContext(ws)
420
421
principal_prefix_access(ws, ctx=ctx)
422
0 commit comments