Skip to content

Commit

Permalink
add debug statement for bucket name
Browse files Browse the repository at this point in the history
  • Loading branch information
sbiscigl committed Nov 29, 2023
1 parent cf0aa84 commit 0079861
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/aws-cpp-sdk-s3-integration-tests/S3ExpressTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,8 @@ namespace {
TEST_F(S3ExpressTest, ShouldCreateS3ExpressBucket) {
auto bucketName = Testing::GetAwsResourcePrefix() + randomString(8) + S3_EXPRESS_SUFFIX;
auto createOutcome = CreateBucket(bucketName);
//TODO: remove debugging right now
EXPECT_TRUE(false) << "BucketName: " << bucketName << "\n";
AWS_EXPECT_SUCCESS(createOutcome);
auto headOutcome = HeadBucket(bucketName);
AWS_EXPECT_SUCCESS(headOutcome);
Expand Down

0 comments on commit 0079861

Please sign in to comment.