Skip to content

Commit 45e455d

Browse files
committed
Revert comment change
1 parent 958e9f0 commit 45e455d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

runtime/protocol/http-client/common/test/aws/smithy/kotlin/runtime/http/interceptors/RequestCompressionInterceptorTest.kt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ class RequestCompressionInterceptorTest {
5959
return op.context.attributes[HttpOperationContext.HttpCallList].first()
6060
}
6161

62-
@IgnoreNative // FIXME Re-enable after Kotlin/Native Implementation
62+
@IgnoreNative // FIXME Re-enable after Kotlin/Native implementation
6363
@Test
6464
fun testCompressionThresholdTooHigh() = runTest {
6565
val payload = "<Foo>bar</Foo>"
@@ -79,7 +79,7 @@ class RequestCompressionInterceptorTest {
7979
assertEquals(bytes, sentBytes)
8080
}
8181

82-
@IgnoreNative // FIXME Re-enable after Kotlin/Native Implementation
82+
@IgnoreNative // FIXME Re-enable after Kotlin/Native implementation
8383
@Test
8484
fun testCompression() = runTest {
8585
val payload = "<Foo>bar</Foo>"
@@ -100,7 +100,7 @@ class RequestCompressionInterceptorTest {
100100
assertContentEquals(bytes, decompressedBytes)
101101
}
102102

103-
@IgnoreNative // FIXME Re-enable after Kotlin/Native Implementation
103+
@IgnoreNative // FIXME Re-enable after Kotlin/Native implementation
104104
@Test
105105
fun testSdkSource() = runTest {
106106
val payload = "<Foo>bar</Foo>"
@@ -121,7 +121,7 @@ class RequestCompressionInterceptorTest {
121121
assertContentEquals(bytes, decompressedBytes)
122122
}
123123

124-
@IgnoreNative // FIXME Re-enable after Kotlin/Native Implementation
124+
@IgnoreNative // FIXME Re-enable after Kotlin/Native implementation
125125
@Test
126126
fun testSdkByteReadChannel() = runTest {
127127
val payload = "<Foo>bar</Foo>"
@@ -142,7 +142,7 @@ class RequestCompressionInterceptorTest {
142142
assertContentEquals(bytes, decompressedBytes)
143143
}
144144

145-
@IgnoreNative // FIXME Re-enable after Kotlin/Native Implementation
145+
@IgnoreNative // FIXME Re-enable after Kotlin/Native implementation
146146
@Test
147147
fun testHeaderAlreadySet() = runTest {
148148
val payload = "<Foo>bar</Foo>"
@@ -164,7 +164,7 @@ class RequestCompressionInterceptorTest {
164164
assertContentEquals(bytes, decompressedBytes)
165165
}
166166

167-
@IgnoreNative // FIXME Re-enable after Kotlin/Native Implementation
167+
@IgnoreNative // FIXME Re-enable after Kotlin/Native implementation
168168
@Test
169169
fun testNoSupportedAlgorithms() = runTest {
170170
val payload = "<Foo>bar</Foo>"
@@ -184,7 +184,7 @@ class RequestCompressionInterceptorTest {
184184
assertEquals(bytes, sentBytes)
185185
}
186186

187-
@IgnoreNative // FIXME Re-enable after Kotlin/Native Implementation
187+
@IgnoreNative // FIXME Re-enable after Kotlin/Native implementation
188188
@Test
189189
fun testInvalidCompressionThreshold() = runTest {
190190
val payload = "<Foo>bar</Foo>"

0 commit comments

Comments
 (0)