wernerdv commented on code in PR #13408:
URL: https://github.com/apache/ignite/pull/13408#discussion_r3681647834
##########
modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/near/GridNearTxPrepareDestroyedCacheTest.java:
##########
@@ -163,13 +163,13 @@ public void
testPrepareOfDestroyedCacheAnsweredWithErrorResponse() throws Except
Throwable err = ((GridNearTxPrepareResponse)resps.get(0)).error();
- assertNotNull("The response must carry the unmarshalling error.", err);
+ assertNotNull("The response must carry the error of the destroyed
cache.", err);
- CacheObjectNotResolvedException cause = X.cause(err,
CacheObjectNotResolvedException.class);
+ CacheInvalidStateException cause = X.cause(err,
CacheInvalidStateException.class);
Review Comment:
Need to update javadoc for GridNearTxPrepareDestroyedCacheTest regarding
`throws {@link CacheObjectNotResolvedException}`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]