Skip to content

Commit 5c482b3

Browse files
committed
address comments
1 parent 9d3663a commit 5c482b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cdk/testing/protractor/protractor-element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export class ProtractorElement implements TestElement {
8484
// Omitting the offset argument to mouseMove results in clicking the center.
8585
// This is the default behavior we want, so we use an empty array of offsetArgs if no args are
8686
// passed to this method.
87-
const offsetArgs = args.length == 2 ? [{x: args[0], y: args[1]}] : [];
87+
const offsetArgs = args.length === 2 ? [{x: args[0], y: args[1]}] : [];
8888

8989
await browser.actions()
9090
.mouseMove(await this.element.getWebElement(), ...offsetArgs)

0 commit comments

Comments
 (0)