Skip to content

Commit c1d4513

Browse files
committed
Re-enable tests
1 parent 49079ad commit c1d4513

File tree

2 files changed

+0
-7
lines changed

2 files changed

+0
-7
lines changed

runtime/crt-util/jvmAndNative/test/aws/smithy/kotlin/runtime/crt/ReadChannelBodyStreamTest.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ class ReadChannelBodyStreamTest {
2727
return MutableBuffer.of(dest) to dest
2828
}
2929

30-
@Ignore
3130
@Test
3231
fun testClose() = runTest {
3332
val chan = SdkByteChannel()
@@ -59,7 +58,6 @@ class ReadChannelBodyStreamTest {
5958
}
6059
}
6160

62-
@Ignore
6361
@Test
6462
fun testReadFully() = runTest {
6563
val data = byteArrayOf(1, 2, 3, 4, 5)
@@ -75,7 +73,6 @@ class ReadChannelBodyStreamTest {
7573
}
7674
}
7775

78-
@Ignore
7976
@Test
8077
fun testPartialRead() = runTest {
8178
val chan = SdkByteReadChannel("123456".encodeToByteArray())
@@ -94,7 +91,6 @@ class ReadChannelBodyStreamTest {
9491
assertEquals("456", sent2.decodeToString())
9592
}
9693

97-
@Ignore
9894
@Test
9995
fun testLargeTransfer() = runTest {
10096
val chan = SdkByteChannel()

runtime/crt-util/jvmAndNative/test/aws/smithy/kotlin/runtime/crt/SdkSourceBodyStreamTest.kt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ class SdkSourceBodyStreamTest {
2222
return MutableBuffer.of(dest) to dest
2323
}
2424

25-
@Ignore
2625
@Test
2726
fun testReadFully() = runTest {
2827
val data = byteArrayOf(1, 2, 3, 4, 5)
@@ -37,7 +36,6 @@ class SdkSourceBodyStreamTest {
3736
}
3837
}
3938

40-
@Ignore
4139
@Test
4240
fun testPartialRead() = runTest {
4341
val source = "123456".encodeToByteArray().source()
@@ -55,7 +53,6 @@ class SdkSourceBodyStreamTest {
5553
assertEquals("456", sent2.decodeToString())
5654
}
5755

58-
@Ignore
5956
@Test
6057
fun testLargeTransfer() = runTest {
6158
val data = "foobar"

0 commit comments

Comments
 (0)