chore(lint): enable requireInternalWithUnderscore tslint check

This commit is contained in:
Alex Eagle
2016-05-27 09:16:46 -07:00
parent 2019050db2
commit b5d14c26d2
8 changed files with 12 additions and 2 deletions

View File

@ -212,6 +212,7 @@ export class SpyObject {
return object;
}
/** @internal */
_createGuinnessCompatibleSpy(name): GuinessCompatibleSpy {
var newSpy: GuinessCompatibleSpy = <any>jasmine.createSpy(name);
newSpy.andCallFake = <any>newSpy.and.callFake;