We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 263c2c6 commit 231ad98Copy full SHA for 231ad98
google-cloud-spanner/src/test/java/com/google/cloud/spanner/it/ITTransactionTest.java
@@ -594,7 +594,8 @@ public void testTxWithLargeMessageSize() {
594
for (int j = 0; j < 7; j++) {
595
byte[] data = new byte[bytesPerColumn];
596
random.nextBytes(data);
597
- builder.set("col" + j)
+ builder
598
+ .set("col" + j)
599
.to(com.google.cloud.spanner.Value.bytes(com.google.cloud.ByteArray.copyFrom(data)));
600
}
601
mutations.add(builder.build());
0 commit comments