Skip to content

Commit 672d17c

Browse files
committed
linting happy
1 parent 76e083b commit 672d17c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/iam.test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ describe('iam', () => {
151151
serverlessStepFunctions.provider.request.restore();
152152
})
153153
);
154-
154+
155155
it('should deleteIamRole when 404 error', () => {
156156
serverlessStepFunctions.provider.request.restore();
157157
deleteIamRoleStub = sinon.stub(serverlessStepFunctions.provider, 'request')
@@ -160,7 +160,7 @@ describe('iam', () => {
160160
.then(() => {
161161
expect(deleteIamRoleStub.callCount).to.be.equal(1);
162162
serverlessStepFunctions.provider.request.restore();
163-
})
163+
});
164164
});
165165

166166
it('should other when other error', () => {
@@ -171,7 +171,7 @@ describe('iam', () => {
171171
.catch(() => {
172172
expect(deleteIamRoleStub.callCount).to.be.equal(1);
173173
serverlessStepFunctions.provider.request.restore();
174-
})
174+
});
175175
});
176176
});
177177

0 commit comments

Comments
 (0)