Skip to content

Commit

Permalink
fix(samples): fix failing sample view IAM member-role groups
Browse files Browse the repository at this point in the history
  • Loading branch information
AVaksman authored and bcoe committed Aug 27, 2019
1 parent ae70881 commit 1c4f21f
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions samples/system-test/iam.test.js
Expand Up @@ -51,9 +51,7 @@ it('should add multiple members to a role on a bucket', async () => {
});

it('should list members of a role on a bucket', async () => {
const output = execSync(
`${cmd} view-members ${bucketName} "user:${userEmail}"`
);
const output = execSync(`${cmd} view-members ${bucketName}`);
assert.match(output, new RegExp(`Roles for bucket ${bucketName}:`));
assert.match(output, new RegExp(`Role: ${roleName}`));
assert.match(output, new RegExp(`Members:`));
Expand Down

0 comments on commit 1c4f21f

Please sign in to comment.