From 871dfead35bc646da0d0aea6eb7f6aa905eb3305 Mon Sep 17 00:00:00 2001 From: Luis Machado Date: Thu, 19 Dec 2024 14:05:46 +0000 Subject: [PATCH] [workloads/jetnews] Update default fling speed from 5000 to 15000 --- wa/workloads/jetnews/__init__.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/wa/workloads/jetnews/__init__.py b/wa/workloads/jetnews/__init__.py index c381855c..f75e3ef0 100755 --- a/wa/workloads/jetnews/__init__.py +++ b/wa/workloads/jetnews/__init__.py @@ -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