File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff 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 ( ) => {
You can’t perform that action at this time.
0 commit comments