Skip to content

Commit

Permalink
Re-enable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lauzadis committed Nov 19, 2024
1 parent 49079ad commit c1d4513
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ class ReadChannelBodyStreamTest {
return MutableBuffer.of(dest) to dest
}

@Ignore
@Test
fun testClose() = runTest {
val chan = SdkByteChannel()
Expand Down Expand Up @@ -59,7 +58,6 @@ class ReadChannelBodyStreamTest {
}
}

@Ignore
@Test
fun testReadFully() = runTest {
val data = byteArrayOf(1, 2, 3, 4, 5)
Expand All @@ -75,7 +73,6 @@ class ReadChannelBodyStreamTest {
}
}

@Ignore
@Test
fun testPartialRead() = runTest {
val chan = SdkByteReadChannel("123456".encodeToByteArray())
Expand All @@ -94,7 +91,6 @@ class ReadChannelBodyStreamTest {
assertEquals("456", sent2.decodeToString())
}

@Ignore
@Test
fun testLargeTransfer() = runTest {
val chan = SdkByteChannel()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ class SdkSourceBodyStreamTest {
return MutableBuffer.of(dest) to dest
}

@Ignore
@Test
fun testReadFully() = runTest {
val data = byteArrayOf(1, 2, 3, 4, 5)
Expand All @@ -37,7 +36,6 @@ class SdkSourceBodyStreamTest {
}
}

@Ignore
@Test
fun testPartialRead() = runTest {
val source = "123456".encodeToByteArray().source()
Expand All @@ -55,7 +53,6 @@ class SdkSourceBodyStreamTest {
assertEquals("456", sent2.decodeToString())
}

@Ignore
@Test
fun testLargeTransfer() = runTest {
val data = "foobar"
Expand Down

0 comments on commit c1d4513

Please sign in to comment.