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 2f425ed commit 86518deCopy full SHA for 86518de
tests/aws-cpp-sdk-core-tests/utils/stream/ChunkingInterceptorTest.cpp
@@ -21,7 +21,8 @@ class ChunkingInterceptorTest : public Aws::Testing::AwsCppSdkGTestSuite {
21
StandardHttpRequest request{"test.com", Http::HttpMethod::HTTP_GET};
22
auto requestHash = Aws::MakeShared<CRC32>(CHUNKING_TEST_LOG_TAG);
23
request.SetRequestHash("crc32", requestHash);
24
- auto inputStream = Aws::MakeShared<Aws::StringStream>(CHUNKING_TEST_LOG_TAG, input);
+ auto inputStream = Aws::MakeShared<Aws::StringStream>(CHUNKING_TEST_LOG_TAG);
25
+ *inputStream << input;
26
27
AwsChunkedIOStream wrapper{&request, inputStream, bufferSize};
28
Aws::IOStream* stream = &wrapper;
0 commit comments