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

Commit

Permalink
Fixed parameter type
Browse files Browse the repository at this point in the history
  • Loading branch information
bianca-stan committed Sep 12, 2023
1 parent 966dadf commit 4a813ea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ internal class TapHelper(
optional: Boolean,
retryCount: Int,
longPress: Boolean,
offsetX: Float,
offsetY: Float,
offsetX: Int,
offsetY: Int,
hierarchy: TreeNode,
device: UiDevice,
) {
Expand All @@ -34,8 +34,8 @@ internal class TapHelper(
optional: Boolean,
retryCount: Int,
longPress: Boolean,
offsetX: Float,
offsetY: Float,
offsetX: Int,
offsetY: Int,
device: UiDevice,
) {
tap(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ data class UiTestGlaze(
optional: Boolean = false,
retryCount: Int = 3,
longPress: Boolean = false,
offsetX: Float = 0F,
offsetY: Float = 0F,
offsetX: Int = 0,
offsetY: Int = 0,
) {
val hierarchy =
hierarchySettleHelper.waitTillHierarchySettles(
Expand Down

0 comments on commit 4a813ea

Please sign in to comment.