Skip to content

Commit b9e2adf

Browse files
committed
lint
1 parent 63e6cc3 commit b9e2adf

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

compute/test/createInstanceReplicatedBootDisk.test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
const path = require('path');
2020
const assert = require('node:assert/strict');
2121
const uuid = require('uuid');
22-
const {after, before, describe, it} = require('mocha');
22+
const {describe, it} = require('mocha');
2323
const cp = require('child_process');
2424
const computeLib = require('@google-cloud/compute');
2525
const {getStaleVMInstances, deleteInstance} = require('./util');
@@ -119,7 +119,6 @@ describe('Create compute instance with replicated boot disk', async () => {
119119
let diskSnapshotLink;
120120

121121
it('should create an instance with replicated boot disk', async () => {
122-
123122
// before
124123
const instancesClient = new computeLib.InstancesClient();
125124
projectId = await instancesClient.getProjectId();

compute/test/replicatedDisk.test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
const path = require('path');
2020
const assert = require('node:assert/strict');
2121
const uuid = require('uuid');
22-
const {after, before, describe, it} = require('mocha');
22+
const {describe, it} = require('mocha');
2323
const cp = require('child_process');
2424
const computeLib = require('@google-cloud/compute');
2525

@@ -57,7 +57,6 @@ describe('Create compute regional replicated disk', async () => {
5757
const zone2 = `${region}-b`;
5858
let projectId;
5959

60-
6160
it('should create a regional replicated disk and attach to vm', async () => {
6261
const instancesClient = new computeLib.InstancesClient();
6362
projectId = await instancesClient.getProjectId();

0 commit comments

Comments
 (0)