fix typo in test
This commit is contained in:
parent
4703ae751c
commit
438b9eec6e
@ -105,7 +105,7 @@ public class MemberShareServiceTest {
|
|||||||
|
|
||||||
// then
|
// then
|
||||||
expectedExeption.expect(TechnicalException.class);
|
expectedExeption.expect(TechnicalException.class);
|
||||||
expectedExeption.expectCause(new CauseMatcher(NotImplementedException.class, "MemberShares are immuatable"));
|
expectedExeption.expectCause(new CauseMatcher(NotImplementedException.class, "MemberShares are immutable"));
|
||||||
|
|
||||||
// when
|
// when
|
||||||
memberShareService.update(requestContextMock, prototypeVO, prototypeVO);
|
memberShareService.update(requestContextMock, prototypeVO, prototypeVO);
|
||||||
@ -117,7 +117,7 @@ public class MemberShareServiceTest {
|
|||||||
|
|
||||||
// then
|
// then
|
||||||
expectedExeption.expect(TechnicalException.class);
|
expectedExeption.expect(TechnicalException.class);
|
||||||
expectedExeption.expectCause(new CauseMatcher(NotImplementedException.class, "MemberShares are immuatable"));
|
expectedExeption.expectCause(new CauseMatcher(NotImplementedException.class, "MemberShares are immutable"));
|
||||||
|
|
||||||
// when
|
// when
|
||||||
memberShareService.delete(requestContextMock, prototypeVO);
|
memberShareService.delete(requestContextMock, prototypeVO);
|
||||||
|
Loading…
Reference in New Issue
Block a user