Skip to content

Commit 4441e05

Browse files
committed
fix comments
1 parent b2cf520 commit 4441e05

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

google/cloud/spanner/integration_tests/client_integration_test.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ TEST_F(ClientIntegrationTest, ReadWithLockHint) {
872872
auto commit_result = client_->Commit(
873873
[&client](google::cloud::spanner::Transaction const& txn)
874874
-> google::cloud::StatusOr<google::cloud::spanner::Mutations> {
875-
// Read SingerId 1 and apply LockHint to the Read operation
875+
// Read row 1 and apply LockHint to the Read operation
876876
auto rows = client.Read(
877877
txn, "Singers",
878878
google::cloud::spanner::KeySet().AddKey(
@@ -889,7 +889,7 @@ TEST_F(ClientIntegrationTest, ReadWithLockHint) {
889889
EXPECT_EQ(std::get<1>(*row), "test-fname-1");
890890
EXPECT_EQ(std::get<2>(*row), "test-lname-1");
891891

892-
// Update row 1 (same row as read).
892+
// Update same row as read.
893893
auto update_result = client.ExecuteDml(
894894
txn, google::cloud::spanner::SqlStatement(
895895
"UPDATE Singers SET LastName = @new_lname "

0 commit comments

Comments
 (0)