Skip to content

Commit

Permalink
format ktlint
Browse files Browse the repository at this point in the history
  • Loading branch information
buenaflor committed Jan 23, 2024
1 parent 41f7809 commit ef22c78
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import java.util.Locale

class SentryFlutter(
private val androidSdk: String,
private val nativeSdk: String
private val nativeSdk: String,
) {

var autoPerformanceTracingEnabled = false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class SentryFlutterTest {
assertEquals(BuildConfig.VERSION_NAME, fixture.options.sdkVersion?.version)
assertEquals(
"sentry.java.android.flutter/${BuildConfig.VERSION_NAME}",
fixture.options.sentryClientName
fixture.options.sentryClientName,
)
assertEquals("fixture-nativeSdk", fixture.options.nativeSdkName)

Expand All @@ -73,8 +73,8 @@ class SentryFlutterTest {
sut.updateOptions(
fixture.options,
mapOf(
"diagnosticLevel" to "warning"
)
"diagnosticLevel" to "warning",
),
)

// Then
Expand All @@ -90,8 +90,8 @@ class SentryFlutterTest {
sut.updateOptions(
fixture.options,
mapOf(
"enableNativeCrashHandling" to false
)
"enableNativeCrashHandling" to false,
),
)

// Then
Expand Down Expand Up @@ -127,13 +127,13 @@ class Fixture {
"maxAttachmentSize" to 9005L,
"enableAutoPerformanceTracing" to true,
"connectionTimeoutMillis" to 9006,
"readTimeoutMillis" to 9007
"readTimeoutMillis" to 9007,
)

fun getSut(): SentryFlutter {
return SentryFlutter(
androidSdk = "sentry.java.android.flutter",
nativeSdk = "fixture-nativeSdk"
nativeSdk = "fixture-nativeSdk",
)
}
}

0 comments on commit ef22c78

Please sign in to comment.