Skip to content

Commit 9c7e0a6

Browse files
authored
Fixing a compilation error in integ tests (#760)
1 parent 28d7f9a commit 9c7e0a6

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

test/integration/setup.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import fs = require('fs');
1919
import minimist = require('minimist');
2020
import path = require('path');
2121
import {random} from 'lodash';
22-
import { Credential, GoogleOAuthAccessToken, Certificate } from '../../src/auth/credential';
22+
import { Credential, GoogleOAuthAccessToken } from '../../src/auth/credential';
2323

2424
/* tslint:disable:no-var-requires */
2525
const chalk = require('chalk');
@@ -117,10 +117,6 @@ class CertificatelessCredential implements Credential {
117117
public getAccessToken(): Promise<GoogleOAuthAccessToken> {
118118
return this.delegate.getAccessToken();
119119
}
120-
121-
public getCertificate(): Certificate | null {
122-
return null;
123-
}
124120
}
125121

126122
/**

0 commit comments

Comments
 (0)