Skip to content

Commit 1c4f21f

Browse files
AVaksmanBenjamin E. Coe
authored andcommitted
fix(samples): fix failing sample view IAM member-role groups
1 parent ae70881 commit 1c4f21f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

samples/system-test/iam.test.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,7 @@ it('should add multiple members to a role on a bucket', async () => {
5151
});
5252

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

0 commit comments

Comments
 (0)