remove redundant await

Signed-off-by: Sri Harsha <12621691+harsha509@users.noreply.github.com>
This commit is contained in:
Sri Harsha 2024-08-15 20:04:22 +05:30 committed by GitHub
parent a1d32d997c
commit 63c96c878d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -104,7 +104,7 @@ class ReporterV2Wrapper implements ReporterV2 {
}
async onEnd(result: FullResult) {
return await this._reporter.onEnd?.(result);
return this._reporter.onEnd?.(result);
}
async onExit() {