Skip to content

Commit 3423718

Browse files
committed
Fix detekt
1 parent d4faa1b commit 3423718

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

build-logic/convention/src/main/kotlin/config/AndroidInstrumentationTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ internal fun LibraryAndroidComponentsExtension.disableUnnecessaryAndroidTests(
55
project: Project,
66
) = beforeVariants {
77
it.enableAndroidTest = it.enableAndroidTest &&
8-
project.projectDir.resolve("src/androidTest").exists()
8+
project.projectDir.resolve("src/androidTest").exists()
99
}

core/network/src/main/kotlin/app/web/drjackycv/core/network/RxJavaCustomCallAdapterFactory.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class RxJavaCustomCallAdapterFactory private constructor() : CallAdapter.Factory
4444
if (returnType !is ParameterizedType) {
4545
throw IllegalStateException(
4646
"${rawType.simpleName} return type must be parameterized as " +
47-
"${rawType.simpleName}<Foo> or ${rawType.simpleName}<? extends Foo>"
47+
"${rawType.simpleName}<Foo> or ${rawType.simpleName}<? extends Foo>"
4848
)
4949
}
5050

0 commit comments

Comments
 (0)