Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Commit

Permalink
fix(dom-utils): removed redundent await
Browse files Browse the repository at this point in the history
  • Loading branch information
danielschwartz85 committed Sep 2, 2019
1 parent cc50558 commit cb07d25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/dom-utils/lib/DomCapture.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ class DomCapture {
}

async getLocation() {
return await this._driver.executeScript(DOCUMENT_LOCATION_HREF_SCRIPT);
return this._driver.executeScript(DOCUMENT_LOCATION_HREF_SCRIPT);
}

/**
Expand Down

0 comments on commit cb07d25

Please sign in to comment.