Skip to content

Commit bb4d285

Browse files
committed
update to test changes
1 parent 80dda21 commit bb4d285

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

tests/aws-cpp-sdk-s3-integration-tests/BucketAndObjectOperationTest.cpp

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,8 @@ namespace
207207
{
208208
// Enable trace logging
209209
Aws::Utils::Logging::InitializeAWSLogging(
210-
Aws::MakeShared<Aws::Utils::Logging::DefaultLogSystem>(
211-
"test", Aws::Utils::Logging::LogLevel::Trace, "aws_sdk_"));
210+
Aws::MakeShared<Aws::Utils::Logging::DefaultLogSystem>(ALLOCATION_TAG, Aws::Utils::Logging::LogLevel::Trace, "aws_sdk_test.log")
211+
);
212212

213213
static std::once_flag flag;
214214
std::call_once(flag, EnsureUniqueBucketNames);
@@ -735,9 +735,7 @@ namespace
735735
putObjectRequest.SetContentLength(static_cast<long>(putObjectRequest.GetBody()->tellp()));
736736
putObjectRequest.SetContentMD5(HashingUtils::Base64Encode(HashingUtils::CalculateMD5(*putObjectRequest.GetBody())));
737737
putObjectRequest.SetContentType("text/plain");
738-
putObjectRequest.SetKey(TEST_OBJ_KEY);
739-
740-
PutObjectOutcome putObjectOutcome = Client->PutObject(putObjectRequest);
738+
putObjectRequest.SetKey(TEST_OBJ_KEY);PutObjectOutcome putObjectOutcome = Client->PutObject(putObjectRequest);
741739
AWS_ASSERT_SUCCESS(putObjectOutcome);
742740

743741
//verify md5 sums between what was sent and what s3 told us they received.

0 commit comments

Comments
 (0)