Skip to content

Commit 4b43cac

Browse files
committed
updated the Kotlin SDK build number
1 parent fe0b474 commit 4b43cac

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

kotlin/services/ses/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ repositories {
2727
}
2828
apply(plugin = "org.jlleitschuh.gradle.ktlint")
2929
dependencies {
30-
implementation("aws.sdk.kotlin:ses:1.2.28")
31-
implementation("aws.sdk.kotlin:secretsmanager:1.2.28")
30+
implementation("aws.sdk.kotlin:ses:1.3.112")
31+
implementation("aws.sdk.kotlin:secretsmanager:1.3.112")
3232
implementation("aws.smithy.kotlin:http-client-engine-okhttp:0.30.0")
3333
implementation("aws.smithy.kotlin:http-client-engine-crt:0.30.0")
3434
implementation("com.google.code.gson:gson:2.10")

kotlin/services/ses/src/test/kotlin/SESTest.kt

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import aws.sdk.kotlin.services.secretsmanager.model.GetSecretValueRequest
77
import com.google.gson.Gson
88
import com.kotlin.ses.listSESIdentities
99
import com.kotlin.ses.send
10-
import com.kotlin.ses.sendemailAttachment
1110
import kotlinx.coroutines.runBlocking
1211
import org.junit.jupiter.api.BeforeAll
1312
import org.junit.jupiter.api.DisplayName
@@ -77,14 +76,6 @@ class SESTest {
7776

7877
@Test
7978
@Order(2)
80-
fun sendMessageAttTest() =
81-
runBlocking {
82-
sendemailAttachment(sender, recipient, subject, bodyText, bodyHTML, fileLocation)
83-
println("Test 2 passed")
84-
}
85-
86-
@Test
87-
@Order(3)
8879
fun listIdentitiesTest() =
8980
runBlocking {
9081
listSESIdentities()

0 commit comments

Comments
 (0)