Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
aramissennyeydd committed May 21, 2024
1 parent 970f7f8 commit 1da8e9d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ export class OperationExecutionManager {
await record.executeAsync({
onStart: onOperationStartAsync,
beforeResult: beforeOperationResult,
onResult: this._onOperationComplete.bind(this)
onResult: this._onOperationCompleteAsync.bind(this)
});
}
},
Expand Down Expand Up @@ -323,7 +323,7 @@ export class OperationExecutionManager {
/**
* Handles the result of the operation and propagates any relevant effects.
*/
private async _onOperationComplete(record: OperationExecutionRecord): Promise<void> {
private async _onOperationCompleteAsync(record: OperationExecutionRecord): Promise<void> {
const { runner, name, status } = record;

const silent: boolean = runner.silent;
Expand Down

0 comments on commit 1da8e9d

Please sign in to comment.