File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
packages/core/src/test/awsService/ec2/explorer Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ describe('ec2ParentNode', function () {
2424 let getInstanceStub : sinon . SinonStub < [ filters ?: EC2 . Filter [ ] | undefined ] , Promise < AsyncCollection < EC2 . Instance > > >
2525 let clock : FakeTimers . InstalledClock
2626 let refreshStub : sinon . SinonStub < [ ] , Promise < void > >
27- let updateStatusStub : sinon . SinonStub < [ ] , Promise < void > >
2827 const testRegion = 'testRegion'
2928 const testPartition = 'testPartition'
3029
@@ -42,7 +41,7 @@ describe('ec2ParentNode', function () {
4241 client = new Ec2Client ( testRegion )
4342 clock = installFakeClock ( )
4443 refreshStub = sinon . stub ( Ec2InstanceNode . prototype , 'refreshNode' )
45- updateStatusStub = sinon . stub ( Ec2InstanceNode . prototype , 'updateStatus' )
44+ sinon . stub ( Ec2InstanceNode . prototype , 'updateStatus' )
4645 } )
4746
4847 beforeEach ( function ( ) {
You can’t perform that action at this time.
0 commit comments