Skip to content

Commit

Permalink
add generation for tap at location (wix#449)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielMSchmidt authored and rotemmiz committed Dec 13, 2017
1 parent cf20cdd commit 52d5bd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion detox/src/android/expect.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class TapAction extends Action {
class TapAtPointAction extends Action {
constructor(value) {
super();
this._call = invoke.call(invoke.Android.Class(DetoxAction), 'tapAtLocation', invoke.Android.Integer(value.x), invoke.Android.Integer(value.y));
this._call = invoke.callDirectly(DetoxActionApi.tapAtLocation(value.x, value.y));
}
}

Expand Down

0 comments on commit 52d5bd6

Please sign in to comment.