Skip to content

Commit

Permalink
Fixing a compilation error in integ tests (#760)
Browse files Browse the repository at this point in the history
  • Loading branch information
hiranya911 committed Jan 14, 2020
1 parent 28d7f9a commit 9c7e0a6
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions test/integration/setup.ts
Expand Up @@ -19,7 +19,7 @@ import fs = require('fs');
import minimist = require('minimist');
import path = require('path');
import {random} from 'lodash';
import { Credential, GoogleOAuthAccessToken, Certificate } from '../../src/auth/credential';
import { Credential, GoogleOAuthAccessToken } from '../../src/auth/credential';

/* tslint:disable:no-var-requires */
const chalk = require('chalk');
Expand Down Expand Up @@ -117,10 +117,6 @@ class CertificatelessCredential implements Credential {
public getAccessToken(): Promise<GoogleOAuthAccessToken> {
return this.delegate.getAccessToken();
}

public getCertificate(): Certificate | null {
return null;
}
}

/**
Expand Down

0 comments on commit 9c7e0a6

Please sign in to comment.