Skip to content

Commit 26f1624

Browse files
authored
ignore content length integration test (#3620)
## Motivation and Context #3618 is blocked by semver hazards check because the current version of this test in `aws-sdk-rust` expects the test to [panic](https://github.com/smithy-lang/smithy-rs/blob/release-2024-04-30/aws/sdk/integration-tests/s3/tests/streaming-response.rs#L23). To land the content length enforcement PR we need to ignore the test and release `smithy-rs` and a version of the SDK with the test ignored instead of expecting it to panic. ---- _By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice._
1 parent 773d36e commit 26f1624

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aws/sdk/integration-tests/s3/tests/streaming-response.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use tracing::debug;
2020

2121
// TODO(https://github.com/smithy-lang/smithy-rs/issues/3523): Unignore this test
2222
#[tokio::test]
23-
#[should_panic]
23+
#[ignore]
2424
async fn test_too_short_body_causes_an_error() {
2525
// this is almost impossible to reproduce with Hyper—you need to do stuff like run each request
2626
// in its own async runtime. But there's no reason a customer couldn't run their _own_ HttpClient

0 commit comments

Comments
 (0)