Skip to content

Commit 4efc8f3

Browse files
committed
fix an ignore
1 parent f5fd86b commit 4efc8f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

components/auth.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,10 @@ function revokeOauthToken (token, baseUrl) {
144144
return dsUtils.makeRequest('Revoke DS OAuth2 Token', options).then(function (response) {
145145
return response;
146146
})
147-
.catch(/* istanbul ignore next */function (error) {
147+
.catch(function (error) {
148+
/* istanbul ignore next */
148149
error.message = error.message + '\nCannot revoke DS OAuth2 access token.';
150+
/* istanbul ignore next */
149151
throw error;
150152
});
151153
});

0 commit comments

Comments
 (0)