Skip to content

Commit

Permalink
kotlin -> 1.3.20
Browse files Browse the repository at this point in the history
coroutines -> 1.1.1
  • Loading branch information
beyondeye authored and daely committed Feb 3, 2019
1 parent 6dc4408 commit d31e9c2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ buildscript {
// mavenCentral()
}
rootProject.ext.versions = [
kotlin: '1.3.11',
kotlin: '1.3.20',
dokka: '0.9.17'
]

Expand Down
4 changes: 2 additions & 2 deletions buildsystem/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ ext.versions = [
targetSdk : 28,
compileSdk : 28,
// buildTools : '26.0.2',
kotlin : '1.3.11',
kotlin : '1.3.20',
//https://github.com/Kotlin/kotlinx.coroutines/releases
kotlin_coroutines : '1.1.0',
kotlin_coroutines : '1.1.1',

// UI libs.
//https://developer.android.com/topic/libraries/support-library/revisions.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,10 @@ class SagaMiddlewareTest {
assertThat(state.incrCounter).isEqualTo(totIncr)
assertThat(state.decrCounter).isEqualTo(totDecr)
}

/**
* rarely this test fails: check why
*/
@Test
fun testSagaForkSpawnAndJoin() {
val store = AsyncStore(TestState(), reducer,
Expand Down

0 comments on commit d31e9c2

Please sign in to comment.