Skip to content

Commit

Permalink
Run coroutine tests on all platforms
Browse files Browse the repository at this point in the history
Some were previously restricted to specific platforms, however
kotlinx-coroutines-test now targets them all.
  • Loading branch information
michaelbull committed Mar 10, 2024
1 parent 3555737 commit 1df8f72
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 121 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ import kotlin.test.assertTrue
@ExperimentalCoroutinesApi
class AsyncSuspendableBindingTest {

private sealed class BindingError {
data object BindingErrorA : BindingError()
data object BindingErrorB : BindingError()
private sealed interface BindingError {
data object BindingErrorA : BindingError
data object BindingErrorB : BindingError
}

@Test
Expand Down

This file was deleted.

0 comments on commit 1df8f72

Please sign in to comment.