Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
anodos325 committed Jul 30, 2024
1 parent 43b2699 commit 62b4ddd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/api2/test_audit_smb.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def test_smb_share_audit(smb_audit_dataset):
with expect_audit_method_calls([{
'method': 'sharing.smb.create',
'params': [payload],
'description': f'SMB share create {smb_share_path}',
'description': f'SMB share create audit_share',
}]):
share_config = call('sharing.smb.create', payload)

Expand All @@ -67,7 +67,7 @@ def test_smb_share_audit(smb_audit_dataset):
share_config['id'],
payload,
],
'description': f'SMB share update {smb_share_path}',
'description': f'SMB share update audit_share',
}]):
share_config = call('sharing.smb.update', share_config['id'], payload)

Expand All @@ -78,6 +78,6 @@ def test_smb_share_audit(smb_audit_dataset):
with expect_audit_method_calls([{
'method': 'sharing.smb.delete',
'params': [share_id],
'description': f'SMB share delete {smb_share_path}',
'description': f'SMB share delete audit_share',
}]):
call('sharing.smb.delete', share_id)

0 comments on commit 62b4ddd

Please sign in to comment.