Skip to content

Commit

Permalink
minore changes 2
Browse files Browse the repository at this point in the history
Signed-off-by: shirady <[email protected]>
  • Loading branch information
shirady committed Jan 14, 2025
1 parent 0cef265 commit d207166
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test/unit_tests/test_s3_bucket_policy.js
Original file line number Diff line number Diff line change
Expand Up @@ -451,6 +451,7 @@ mocha.describe('s3_bucket_policy', function() {
get_deny_account_by_id_all_s3_actions_statement(user_a_account_details._id);
const allow_account_by_name_all_s3_actions_statement = _.cloneDeep(deny_account_by_name_all_s3_actions_statement);
allow_account_by_name_all_s3_actions_statement.Effect = 'Allow';
allow_account_by_name_all_s3_actions_statement.Sid = `Allow user ${user_a} get any object`;
const policy = {
Statement: [
deny_account_by_id_all_s3_actions_statement,
Expand Down Expand Up @@ -485,6 +486,7 @@ mocha.describe('s3_bucket_policy', function() {
get_deny_account_by_id_all_s3_actions_statement(user_a_account_details._id);
const allow_account_by_id_all_s3_actions_statement = _.cloneDeep(deny_account_by_id_all_s3_actions_statement);
allow_account_by_id_all_s3_actions_statement.Effect = 'Allow';
allow_account_by_id_all_s3_actions_statement.Sid = `Allow user ${user_a_account_details._id} get any object`;
const policy = {
Statement: [
deny_account_by_name_all_s3_actions_statement,
Expand Down

0 comments on commit d207166

Please sign in to comment.