Adjusted to new constructor signature
This commit is contained in:
parent
787b91f7a8
commit
d73e359c27
|
@ -62,7 +62,7 @@ class MessageBuilderTest : FinTsTestBase() {
|
||||||
|
|
||||||
// given
|
// given
|
||||||
val dialogId = createDialogId()
|
val dialogId = createDialogId()
|
||||||
val dialogContext = DialogContext(Bank, Product, false, null, dialogId)
|
val dialogContext = DialogContext(Bank, Product, dialogId = dialogId)
|
||||||
|
|
||||||
// when
|
// when
|
||||||
val result = underTest.createAnonymousDialogEndMessage(dialogContext).createdMessage ?: ""
|
val result = underTest.createAnonymousDialogEndMessage(dialogContext).createdMessage ?: ""
|
||||||
|
@ -104,7 +104,7 @@ class MessageBuilderTest : FinTsTestBase() {
|
||||||
|
|
||||||
// given
|
// given
|
||||||
val dialogId = createDialogId()
|
val dialogId = createDialogId()
|
||||||
val dialogContext = DialogContext(Bank, Product, false, null, dialogId)
|
val dialogContext = DialogContext(Bank, Product, dialogId = dialogId)
|
||||||
|
|
||||||
// when
|
// when
|
||||||
val result = underTest.createDialogEndMessage(dialogContext).createdMessage ?: ""
|
val result = underTest.createDialogEndMessage(dialogContext).createdMessage ?: ""
|
||||||
|
|
Loading…
Reference in New Issue