Skip to content

Commit

Permalink
unbreak benchmarks (#5202)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbonnin authored Aug 22, 2023
1 parent eeba31e commit 36c930b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benchmark/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

android {
namespace = "app_under_test"
namespace = "app.under.test"

compileSdk = libs.versions.android.sdkversion.compilebenchmark.get().toInt()

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package app_under_test
package app.under.test

import android.content.Context
import android.os.Bundle
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ abstract class AbstractStartupBenchmark(private val startupMode: StartupMode) {
)

private fun startup(compilationMode: CompilationMode) = benchmarkRule.measureRepeated(
packageName = "app_under_test.benchmark",
packageName = "app.under.test.benchmark",
metrics = listOf(StartupTimingMetric()),
compilationMode = compilationMode,
iterations = 10,
Expand Down

0 comments on commit 36c930b

Please sign in to comment.