Skip to content

Commit a6d928f

Browse files
committed
fix ci failures
1 parent 2812425 commit a6d928f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

google/cloud/storage/testing/storage_integration_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ std::unique_ptr<RetryPolicy> StorageIntegrationTest::TestRetryPolicy() {
155155
}
156156

157157
std::string StorageIntegrationTest::RandomBucketNamePrefix() {
158-
return "gcs-grpc-team-cloud-cpp-testing";
158+
return "gcs-cloud-cpp-testing";
159159
}
160160

161161
std::string StorageIntegrationTest::MakeRandomBucketName() {

google/cloud/storage/tests/bucket_integration_test.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,8 @@ TEST_F(BucketIntegrationTest, ListFailure) {
685685
TEST_F(BucketIntegrationTest, ListPartialSuccess) {
686686
auto client = MakeIntegrationTestClient();
687687
std::string bucket_name = MakeRandomBucketName();
688-
std::string unreachable_bucket_name = MakeRandomBucketName() + "-unreachable";
688+
std::string unreachable_bucket_name =
689+
MakeRandomBucketName().substr(0, 50) + "-unreachable";
689690

690691
auto meta =
691692
client.CreateBucketForProject(bucket_name, project_id_, BucketMetadata{});

0 commit comments

Comments
 (0)