Skip to content

Commit

Permalink
run the linter
Browse files Browse the repository at this point in the history
Run the linter
  • Loading branch information
danieljbruce committed Oct 4, 2023
1 parent 94e46de commit 682431e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions system-test/bigtable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,9 +155,8 @@ describe('Bigtable', () => {

it('should test Iam permissions for the instance', async () => {
const permissions = ['bigtable.tables.get', 'bigtable.tables.readRows'];
const [grantedPermissions] = await INSTANCE.testIamPermissions(
permissions
);
const [grantedPermissions] =
await INSTANCE.testIamPermissions(permissions);
assert.strictEqual(grantedPermissions.length, permissions.length);
permissions.forEach(permission => {
assert.strictEqual(grantedPermissions.includes(permission), true);
Expand Down

0 comments on commit 682431e

Please sign in to comment.