Skip to content

Commit

Permalink
[workloads/jetnews] Update default fling speed from 5000 to 15000
Browse files Browse the repository at this point in the history
  • Loading branch information
luis-machado-arm committed Dec 19, 2024
1 parent 0a9c16b commit 871dfea
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions wa/workloads/jetnews/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,10 @@ class Jetnews(ApkUiautoJankTestWorkload): # pylint: disable=too-many-ancestors
constraint=lambda x: all(v in ['PortraitVerticalTest', 'PortraitHorizontalTest', 'LandscapeVerticalTest'] for v in x)),
Parameter('flingspeed', kind=int,
description="""
Default fling speed for the tests. The default is 5000 and
the minimum value is 1000.
""", default=5000, constraint=lambda x: x >= 1000),
Default fling speed for the tests. The default is 15000 and
the minimum value is 1000. If the value is too small, it will
take longer for the test to run.
""", default=15000, constraint=lambda x: x >= 1000),
Parameter('repeat', kind=int,
description="""
The number of times the tests should be repeated. The default
Expand Down

0 comments on commit 871dfea

Please sign in to comment.