Skip to content

Commit 495d7c4

Browse files
committed
update comment
1 parent 3a74f8f commit 495d7c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

aws-crt-kotlin/common/test/aws/sdk/kotlin/crt/auth/credentials/CredentialsProviderTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ import kotlin.test.assertEquals
1717
private val EXPECTED_CREDENTIALS = Credentials("access_key_id", "secret_access_key", "session_token")
1818

1919
class CredentialsProviderTest : CrtTest() {
20-
@Ignore // FIXME Enable when Kotlin/Native implementation is complete
20+
@Ignore // FIXME Enable if we decide to implement Kotlin/Native credentials providers
2121
@Test
2222
fun testStaticProvider() = runTest {
2323
val provider = StaticCredentialsProvider.fromCredentials(EXPECTED_CREDENTIALS)
2424
val actual = provider.getCredentials()
2525
assertEquals(EXPECTED_CREDENTIALS, actual)
2626
}
2727

28-
@Ignore // FIXME Enable when Kotlin/Native implementation is complete
28+
@Ignore // FIXME Enable if we decide to implement Kotlin/Native credentials providers
2929
@Test
3030
fun testCreateDestroyDefaultChain() {
3131
val elg = EventLoopGroup(1)

0 commit comments

Comments
 (0)