Skip to content

Commit 1d95353

Browse files
菊池健吾菊池健吾
菊池健吾
authored and
菊池健吾
committed
fix lint
1 parent c652ae1 commit 1d95353

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/integration/machine-learning.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,7 @@ function getAutoMLModelReference(): Promise<string> {
580580

581581
const parent = automl.locationPath(projectId, 'us-central1');
582582
return automl.listModels({ parent, filter:'displayName=admin_sdk_integ_test1' })
583-
.then(([models]: [any]) => {
583+
.then(([models]: any[]) => {
584584
let modelRef = '';
585585
for (const model of models) {
586586
modelRef = model.name;

test/unit/security-rules/security-rules.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ describe('SecurityRules', () => {
8989
stubs = [];
9090
});
9191

92-
function stubReleaseFromSource(): [sinon.SinonStub, sinon.SinonStub] {
92+
function stubReleaseFromSource(): sinon.SinonStub[] {
9393
const createRuleset = sinon
9494
.stub(SecurityRulesApiClient.prototype, 'createRuleset')
9595
.resolves(FIRESTORE_RULESET_RESPONSE);

0 commit comments

Comments
 (0)