Skip to content

Commit

Permalink
fix: min value to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshitaka-ogata committed Jun 20, 2023
1 parent 45d2701 commit e800feb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public class SnapshotMaxDepth extends AbstractSetting<Integer> {
// https://github.com/appium/appium/issues/12545
// https://github.com/appium/appium/issues/12892
private static final int DEFAULT_VALUE = 70;
private static final int MIN_DEPTH = 10;
private static final int MIN_DEPTH = 1;
private static final int MAX_DEPTH = 500;
private Integer value = DEFAULT_VALUE;

Expand Down

0 comments on commit e800feb

Please sign in to comment.