Skip to content

Commit d29256d

Browse files
committed
fix formatting
1 parent 72ee646 commit d29256d

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

google/cloud/spanner/read_partition_test.cc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,15 +206,17 @@ TEST(ReadPartitionTest, MakeReadParams) {
206206
Connection::ReadParams params = spanner_internal::MakeReadParams(
207207
expected_partition.Partition(),
208208
IncludeReplicas({ReplicaSelection(ReplicaType::kReadWrite)},
209-
/*auto_failover_disabled=*/true), google::cloud::spanner::LockHint::kLockHintExclusive);
209+
/*auto_failover_disabled=*/true),
210+
google::cloud::spanner::LockHint::kLockHintExclusive);
210211

211212
EXPECT_EQ(*params.partition_token, "token");
212213
EXPECT_EQ(params.read_options, read_options);
213214
EXPECT_FALSE(params.partition_data_boost);
214215
EXPECT_EQ(params.columns, columns);
215216
EXPECT_EQ(params.keys, KeySet::All());
216217
EXPECT_EQ(params.table, "Students");
217-
EXPECT_EQ(params.lock_hint, google::cloud::spanner::LockHint::kLockHintExclusive);
218+
EXPECT_EQ(params.lock_hint,
219+
google::cloud::spanner::LockHint::kLockHintExclusive);
218220
EXPECT_THAT(params.transaction,
219221
HasSessionAndTransaction("session", "txn-id", true, "tag"));
220222
EXPECT_THAT(

0 commit comments

Comments
 (0)