Skip to content

Commit 856b7fb

Browse files
mwasilewroxell
authored andcommitted
automated: android: fix black warnings in apk-automation
Signed-off-by: Milosz Wasilewski <milosz.wasilewski@foundries.io>
1 parent 8bc30f6 commit 856b7fb

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

automated/android/apk-automation/glbenchmark25.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ def __init__(self, config):
99
self.config = config
1010
self.config["apk_file_name"] = "GLBenchmark_2.5.1.apk"
1111
self.config["apk_package"] = "com.glbenchmark.glbenchmark25"
12-
self.config[
13-
"activity"
14-
] = "com.glbenchmark.glbenchmark25/com.glbenchmark.activities.GLBenchmarkDownloaderActivity"
12+
self.config["activity"] = (
13+
"com.glbenchmark.glbenchmark25/com.glbenchmark.activities.GLBenchmarkDownloaderActivity"
14+
)
1515
super(ApkRunnerImpl, self).__init__(self.config)
1616

1717
def setUp(self):

automated/android/apk-automation/javawhetstone.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
class ApkRunnerImpl(ApkTestRunner):
88
def __init__(self, config):
99
self.config = config
10-
self.config[
11-
"apk_file_name"
12-
] = "JavaBenchmark/pure-java-benchmarks/01-Java_Whetstone.apk"
10+
self.config["apk_file_name"] = (
11+
"JavaBenchmark/pure-java-benchmarks/01-Java_Whetstone.apk"
12+
)
1313
self.config["apk_package"] = "com.roywhet"
1414
self.config["activity"] = "com.roywhet/.JavaWhetstoneActivity"
1515
super(ApkRunnerImpl, self).__init__(self.config)

automated/android/apk-automation/jbench.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
class ApkRunnerImpl(ApkTestRunner):
88
def __init__(self, config):
99
self.config = config
10-
self.config[
11-
"apk_file_name"
12-
] = "JavaBenchmark/pure-java-benchmarks/03-JBench.apk"
10+
self.config["apk_file_name"] = (
11+
"JavaBenchmark/pure-java-benchmarks/03-JBench.apk"
12+
)
1313
self.config["apk_package"] = "it.JBench.bench"
1414
self.config["activity"] = "it.JBench.bench/it.JBench.jbench.MainActivity"
1515
super(ApkRunnerImpl, self).__init__(self.config)

automated/android/apk-automation/quadrantpro.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
class ApkRunnerImpl(ApkTestRunner):
66
def __init__(self, config):
77
self.config = config
8-
self.config[
9-
"apk_file_name"
10-
] = "com.aurorasoftworks.quadrant.ui.professional-1.apk"
8+
self.config["apk_file_name"] = (
9+
"com.aurorasoftworks.quadrant.ui.professional-1.apk"
10+
)
1111
self.config["apk_package"] = "com.aurorasoftworks.quadrant.ui.professional"
12-
self.config[
13-
"activity"
14-
] = "com.aurorasoftworks.quadrant.ui.professional/.QuadrantProfessionalLauncherActivity"
12+
self.config["activity"] = (
13+
"com.aurorasoftworks.quadrant.ui.professional/.QuadrantProfessionalLauncherActivity"
14+
)
1515
super(ApkRunnerImpl, self).__init__(self.config)
1616

1717
def setUp(self):

automated/android/apk-automation/scimark.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
class ApkRunnerImpl(ApkTestRunner):
77
def __init__(self, config):
88
self.config = config
9-
self.config[
10-
"apk_file_name"
11-
] = "JavaBenchmark/non-pure-java-benchmarks/03-SciMark.apk"
9+
self.config["apk_file_name"] = (
10+
"JavaBenchmark/non-pure-java-benchmarks/03-SciMark.apk"
11+
)
1212
self.config["apk_package"] = "net.danielroggen.scimark"
1313
self.config["activity"] = "net.danielroggen.scimark/.ActivityMain"
1414
super(ApkRunnerImpl, self).__init__(self.config)

0 commit comments

Comments
 (0)