Fix failing test case due to Exception message refactor.

This commit is contained in:
John Blum
2017-11-07 11:21:07 -08:00
parent 1823d37db0
commit e09128ca63

View File

@@ -194,7 +194,7 @@ public class AbstractGemFireOperationsSessionRepositoryTests {
new TestGemFireOperationsSessionRepository(null); new TestGemFireOperationsSessionRepository(null);
} }
catch (IllegalArgumentException expected) { catch (IllegalArgumentException expected) {
assertThat(expected).hasMessage("GemfireOperations must not be null"); assertThat(expected).hasMessage("GemfireOperations is required");
assertThat(expected).hasNoCause(); assertThat(expected).hasNoCause();
throw expected; throw expected;