Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickuhlmann committed Nov 24, 2024
1 parent 548e659 commit f1b91be
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ describe('EventlistComponent', () => {
const fnc = spyOn(eventService, 'getEventsWithFilter').and.returnValue(
of(events)
);
sut.filterByOrganisation({ value: 'Cevi Alpin' } as MatSelectChange);
sut.filterByOrganisation({ value: ['Cevi Alpin'] } as MatSelectChange);
expect(fnc).toHaveBeenCalledWith({
groups: ['Cevi Alpin'],
} as CeviEventFilter);
Expand Down

0 comments on commit f1b91be

Please sign in to comment.