We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9b2629 commit e8562edCopy full SHA for e8562ed
runtime/runtime-core/common/test/aws/smithy/kotlin/runtime/content/ByteStreamFlowTest.kt
@@ -71,12 +71,16 @@ abstract class ByteStreamFlowTest(
71
assertContentEquals(expected, actual)
72
}
73
74
+ // FIXME - flaky test - re-enable after debugging
75
+ @Ignore
76
@Test
77
fun testContentLengthOverflow() = runTest {
78
val advertisedContentLength = 1024L
79
testInvalidContentLength(advertisedContentLength, "9748 bytes collected from flow exceeds reported content length of 1024")
80
81
82
83
84
85
fun testContentLengthUnderflow() = runTest {
86
val advertisedContentLength = data.sumOf { it.size } + 100L
0 commit comments