Skip to content

Commit

Permalink
see last commit/version
Browse files Browse the repository at this point in the history
  • Loading branch information
benkuly committed Apr 27, 2021
1 parent 689d356 commit 8e49c2d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
12 changes: 6 additions & 6 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
object Versions {
const val kotlin = "1.4.10" // https://kotlinlang.org/
const val kotlinRetry = "1.0.6" // https://github.com/michaelbull/kotlin-retry
const val kotest = "4.3.1" // https://github.com/kotest/kotest/releases
const val springBoot = "2.4.0" // https://spring.io/projects/spring-boot
const val kotlin = "1.4.31" // https://kotlinlang.org/
const val kotlinRetry = "1.0.8" // https://github.com/michaelbull/kotlin-retry
const val kotest = "4.4.3" // https://github.com/kotest/kotest/releases
const val springBoot = "2.4.4" // https://spring.io/projects/spring-boot
const val springDependencyManagement =
"1.0.10.RELEASE" // https://github.com/spring-gradle-plugins/dependency-management-plugin/releases
"1.0.11.RELEASE" // https://github.com/spring-gradle-plugins/dependency-management-plugin/releases
const val springMockk = "2.0.3" // https://github.com/Ninja-Squad/springmockk/releases
const val matrixSDK = "0.4.7" // https://github.com/benkuly/matrix-spring-boot-sdk/releases
const val matrixSDK = "0.4.8" // https://github.com/benkuly/matrix-spring-boot-sdk/releases
const val clikt = "3.0.1" // https://github.com/ajalt/clikt/releases
const val ant = "1.10.9" // https://ant.apache.org/antnews.html
const val libphonenumber = "8.12.12" // https://github.com/google/libphonenumber/releases
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ class SmsSendCommand(
receiverNumbers = setOf(number),
inviteUserIds = inviteUserIds,
roomName = roomName,
roomCreationMode = roomCreationMode,
sendAfterLocal = sendAfter
sendAfterLocal = sendAfter,
roomCreationMode = roomCreationMode
)
})
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ class SmsSendCommandTest {

private val senderId = UserId("sender", "server")


@BeforeEach
fun beforeEach() {
coEvery { handler.handleCommand(any(), any(), any(), any(), any(), any(), any()) }.returns("answer")
Expand Down

0 comments on commit 8e49c2d

Please sign in to comment.