BugFix
This commit is contained in:
parent
65ecc3d38c
commit
c9851384b8
@ -37,8 +37,7 @@ public class Autoresponder {
|
|||||||
if (personService.checkPerson(idPerson)) {
|
if (personService.checkPerson(idPerson)) {
|
||||||
person = personService.getPersonById(idPerson);
|
person = personService.getPersonById(idPerson);
|
||||||
} else {
|
} else {
|
||||||
person = new Person();
|
person = new Person(idPerson);
|
||||||
person.setId(idPerson);
|
|
||||||
personService.addPerson(person);
|
personService.addPerson(person);
|
||||||
}
|
}
|
||||||
return person;
|
return person;
|
||||||
|
@ -123,4 +123,4 @@
|
|||||||
// Assert.assertEquals(autoresponder.answer(100, "Привет это тест срабатывания"), "Здравствуйте, вы написали в нашу компанию!");
|
// Assert.assertEquals(autoresponder.answer(100, "Привет это тест срабатывания"), "Здравствуйте, вы написали в нашу компанию!");
|
||||||
// Assert.assertEquals(autoresponder.answer(100, "Привет это тест срабатывания"), "Ответ с {0} параметрами!");
|
// Assert.assertEquals(autoresponder.answer(100, "Привет это тест срабатывания"), "Ответ с {0} параметрами!");
|
||||||
// }
|
// }
|
||||||
}
|
//}
|
Loading…
Reference in New Issue
Block a user