Skip to content

Commit dec4241

Browse files
chore: generate libraries at Mon Sep 22 15:10:13 UTC 2025
1 parent c5691ee commit dec4241

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

google-cloud-spanner/src/test/java/com/google/cloud/spanner/connection/ConnectionAsyncApiTest.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,8 @@ private void testExecuteQuery(Function<Connection, Void> connectionConfigurator)
539539
if (e.getErrorCode() == ErrorCode.FAILED_PRECONDITION
540540
&& e.getMessage()
541541
.contains(
542-
"This transaction has been invalidated by a later transaction in the same session")) {
542+
"This transaction has been invalidated by a later transaction in the same"
543+
+ " session")) {
543544
// Ignore for regular sessions.
544545
assertFalse(isMultiplexedSessionsEnabledForRW(connection.getSpanner()));
545546
} else {
@@ -589,7 +590,8 @@ private void testExecuteUpdateAsync(
589590
if (e.getErrorCode() == ErrorCode.FAILED_PRECONDITION
590591
&& e.getMessage()
591592
.contains(
592-
"This transaction has been invalidated by a later transaction in the same session")) {
593+
"This transaction has been invalidated by a later transaction in the same"
594+
+ " session")) {
593595
// Ignore for regular sessions.
594596
assertFalse(isMultiplexedSessionsEnabledForRW(connection.getSpanner()));
595597
} else {

0 commit comments

Comments
 (0)