Skip to content

Commit c1b776f

Browse files
committed
fix reviews on awschunking and default behavior
1 parent 4dba26f commit c1b776f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/aws-cpp-sdk-core-tests/utils/stream/AwsChunkedStreamTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const char* TEST_LOG_TAG = "AWS_CHUNKED_STREAM_TEST";
1818
class AwsChunkedStreamTest : public Aws::Testing::AwsCppSdkGTestSuite {
1919
protected:
2020
StandardHttpRequest CreateRequestWithChecksum(const std::string& url, const std::string& /* data */) {
21-
StandardHttpRequest request{Http::URI(Aws::String(url)), Http::HttpMethod::HTTP_GET};
21+
StandardHttpRequest request{Http::URI(Aws::String(url.c_str())), Http::HttpMethod::HTTP_GET};
2222
auto requestHash = Aws::MakeShared<CRC32>(TEST_LOG_TAG);
2323
request.SetRequestHash("crc32", requestHash);
2424
return request;

0 commit comments

Comments
 (0)