Skip to content

Commit

Permalink
test: Update assertion in failing test: ITSystemTest.readOnlyTransact…
Browse files Browse the repository at this point in the history
…ion_failureWhenAttemptReadOlderThan60Seconds (#589)
  • Loading branch information
dconeybe committed Apr 13, 2021
1 parent 029f01d commit 66e0e88
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -1535,7 +1535,7 @@ public Void updateCallback(Transaction transaction) throws Exception {
final StatusRuntimeException invalidArgument = (StatusRuntimeException) rootCause;
final Status status = invalidArgument.getStatus();
assertThat(status.getCode()).isEqualTo(Code.FAILED_PRECONDITION);
assertThat(status.getDescription()).contains("old");
assertThat(status.getDescription()).contains("minimum");
}
}

Expand Down

0 comments on commit 66e0e88

Please sign in to comment.