1

fix tests

This commit is contained in:
tomvahl
2020-03-19 16:32:24 +01:00
parent 7358d80528
commit feb21a512b
2 changed files with 3 additions and 2 deletions

View File

@ -27,9 +27,9 @@ class GroupServiceTest {
@Test
void rightClassForSuccessfulGroup() throws Exception {
void rightClassForSuccessfulGroup() {
List<Event> eventList = new ArrayList<>();
eventList.add(new CreateGroupEvent(1L, "Prof", null, GroupType.LECTURE, Visibility.PRIVATE,null));
eventList.add(new CreateGroupEvent(1L, "Prof", null, GroupType.LECTURE, Visibility.PRIVATE,1000L));
eventList.add(new AddUserEvent(1L, "Ulli", "Ulli", "Honnis", "FC@B.de"));
List<Group> groups = groupService.projectEventList(eventList);