Skip to content

Commit 29b8a83

Browse files
authored
ci: clang-tidy for oauth2, storagecontrol (googleapis#14338)
1 parent a4b0650 commit 29b8a83

2 files changed

Lines changed: 7 additions & 4 deletions

File tree

ci/lib/shard.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,11 @@ readonly PUBSUB_SHARD=(
5555

5656
readonly STORAGE_SHARD=(
5757
storage
58+
storagecontrol
5859
experimental-storage_grpc
59-
# universe_domain is included because its deps are already built by storage.
60+
# oauth2 and universe_domain are included because their deps are already built
61+
# by storage.
62+
oauth2
6063
universe_domain
6164
)
6265

google/cloud/storagecontrol/v2/samples/storage_control_folder_samples.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,11 @@ void AutoRun(std::vector<std::string> const& argv) {
147147
auto client = storagecontrol::StorageControlClient(
148148
storagecontrol::MakeStorageControlConnection());
149149
auto generator = google::cloud::internal::DefaultPRNG(std::random_device{}());
150-
auto const prefix = "storage-control-samples";
151-
auto const folder_id = prefix + std::string{"-"} +
150+
auto const prefix = std::string{"storage-control-samples"};
151+
auto const folder_id = prefix + "-" +
152152
google::cloud::internal::Sample(
153153
generator, 32, "abcdefghijklmnopqrstuvwxyz");
154-
auto const dest_folder_id = prefix + std::string{"-"} +
154+
auto const dest_folder_id = prefix + "-" +
155155
google::cloud::internal::Sample(
156156
generator, 32, "abcdefghijklmnopqrstuvwxyz");
157157
auto const create_time_limit =

0 commit comments

Comments
 (0)