Skip to content

Commit

Permalink
automated: android: fix black warnings in apk-automation
Browse files Browse the repository at this point in the history
Signed-off-by: Milosz Wasilewski <[email protected]>
  • Loading branch information
mwasilew committed Feb 5, 2024
1 parent 8bc30f6 commit 32071c1
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions automated/android/apk-automation/glbenchmark25.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ def __init__(self, config):
self.config = config
self.config["apk_file_name"] = "GLBenchmark_2.5.1.apk"
self.config["apk_package"] = "com.glbenchmark.glbenchmark25"
self.config[
"activity"
] = "com.glbenchmark.glbenchmark25/com.glbenchmark.activities.GLBenchmarkDownloaderActivity"
self.config["activity"] = (
"com.glbenchmark.glbenchmark25/com.glbenchmark.activities.GLBenchmarkDownloaderActivity"
)
super(ApkRunnerImpl, self).__init__(self.config)

def setUp(self):
Expand Down
6 changes: 3 additions & 3 deletions automated/android/apk-automation/javawhetstone.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
class ApkRunnerImpl(ApkTestRunner):
def __init__(self, config):
self.config = config
self.config[
"apk_file_name"
] = "JavaBenchmark/pure-java-benchmarks/01-Java_Whetstone.apk"
self.config["apk_file_name"] = (
"JavaBenchmark/pure-java-benchmarks/01-Java_Whetstone.apk"
)
self.config["apk_package"] = "com.roywhet"
self.config["activity"] = "com.roywhet/.JavaWhetstoneActivity"
super(ApkRunnerImpl, self).__init__(self.config)
Expand Down
6 changes: 3 additions & 3 deletions automated/android/apk-automation/jbench.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
class ApkRunnerImpl(ApkTestRunner):
def __init__(self, config):
self.config = config
self.config[
"apk_file_name"
] = "JavaBenchmark/pure-java-benchmarks/03-JBench.apk"
self.config["apk_file_name"] = (
"JavaBenchmark/pure-java-benchmarks/03-JBench.apk"
)
self.config["apk_package"] = "it.JBench.bench"
self.config["activity"] = "it.JBench.bench/it.JBench.jbench.MainActivity"
super(ApkRunnerImpl, self).__init__(self.config)
Expand Down
12 changes: 6 additions & 6 deletions automated/android/apk-automation/quadrantpro.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
class ApkRunnerImpl(ApkTestRunner):
def __init__(self, config):
self.config = config
self.config[
"apk_file_name"
] = "com.aurorasoftworks.quadrant.ui.professional-1.apk"
self.config["apk_file_name"] = (
"com.aurorasoftworks.quadrant.ui.professional-1.apk"
)
self.config["apk_package"] = "com.aurorasoftworks.quadrant.ui.professional"
self.config[
"activity"
] = "com.aurorasoftworks.quadrant.ui.professional/.QuadrantProfessionalLauncherActivity"
self.config["activity"] = (
"com.aurorasoftworks.quadrant.ui.professional/.QuadrantProfessionalLauncherActivity"
)
super(ApkRunnerImpl, self).__init__(self.config)

def setUp(self):
Expand Down
6 changes: 3 additions & 3 deletions automated/android/apk-automation/scimark.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
class ApkRunnerImpl(ApkTestRunner):
def __init__(self, config):
self.config = config
self.config[
"apk_file_name"
] = "JavaBenchmark/non-pure-java-benchmarks/03-SciMark.apk"
self.config["apk_file_name"] = (
"JavaBenchmark/non-pure-java-benchmarks/03-SciMark.apk"
)
self.config["apk_package"] = "net.danielroggen.scimark"
self.config["activity"] = "net.danielroggen.scimark/.ActivityMain"
super(ApkRunnerImpl, self).__init__(self.config)
Expand Down

0 comments on commit 32071c1

Please sign in to comment.