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