Skip to content

Commit bdd64c8

Browse files
committed
format fix
1 parent f9ce8f6 commit bdd64c8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/deploy/dataconnect/prepare.spec.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ describe("dataconnect prepare", () => {
2121
let getResourceFiltersStub: sinon.SinonStub;
2222
let diffSchemaStub: sinon.SinonStub;
2323
let setupCloudSqlStub: sinon.SinonStub;
24-
let checkBillingEnabledStub: sinon.SinonStub;
2524

2625
beforeEach(() => {
2726
sandbox = sinon.createSandbox();
@@ -32,14 +31,14 @@ describe("dataconnect prepare", () => {
3231
getResourceFiltersStub = sandbox.stub(filters, "getResourceFilters").returns(undefined);
3332
diffSchemaStub = sandbox.stub(schemaMigration, "diffSchema").resolves();
3433
setupCloudSqlStub = sandbox.stub(provisionCloudSql, "setupCloudSql").resolves();
35-
checkBillingEnabledStub = sandbox.stub(cloudbilling, "checkBillingEnabled").resolves();
3634
sandbox.stub(projectUtils, "needProjectId").returns("test-project");
3735
sandbox.stub(utils, "logLabeledBullet");
36+
sandbox.stub(cloudbilling, "checkBillingEnabled").resolves();
3837
});
3938

4039
afterEach(() => {
4140
sandbox.restore();
42-
nock.cleanAll()
41+
nock.cleanAll();
4342
});
4443

4544
it("should do nothing if there are no services", async () => {

0 commit comments

Comments
 (0)