Skip to content

Commit f68aa6f

Browse files
author
Peter Bryant
committed
🚨 Fix lint errors
1 parent a5bddb4 commit f68aa6f

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

compose/src/test/java/com/ptrbrynt/kotlin_bloc/compose/LoggingBlocObserverTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ import com.ptrbrynt.kotlin_bloc.compose.blocs.CounterEvent
77
import com.ptrbrynt.kotlin_bloc.core.Bloc
88
import io.mockk.mockk
99
import io.mockk.verifyOrder
10+
import java.io.PrintStream
1011
import org.junit.Rule
1112
import org.junit.Test
1213
import org.junit.runner.RunWith
1314
import org.robolectric.annotation.Config
1415
import org.robolectric.shadows.ShadowLog
15-
import java.io.PrintStream
1616

1717
@RunWith(AndroidJUnit4::class)
1818
@Config(shadows = [ShadowLog::class])

core/src/main/java/com/ptrbrynt/kotlin_bloc/core/Cubit.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,4 @@ abstract class Cubit<State, SideEffect>(initial: State) :
4040
override suspend fun emitSideEffects(sideEffects: Flow<SideEffect>) {
4141
sideEffects.onEach { emitSideEffect(it) }.launchIn(blocScope)
4242
}
43-
4443
}

test/src/main/java/com/ptrbrynt/kotlin_bloc/test/BlocTest.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ suspend fun <B : BlocBase<State, SideEffect>, State, SideEffect> testBloc(
5353

5454
setUp()
5555

56-
5756
testStates(
5857
build = build,
5958
act = act,
@@ -127,4 +126,4 @@ private suspend fun <B : BlocBase<State, SideEffect>, State, SideEffect> testSid
127126
}
128127

129128
bloc.verify()
130-
}
129+
}

0 commit comments

Comments
 (0)