Skip to content

Commit

Permalink
[ACS-5645] unit test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AnukritiGL committed Oct 17, 2023
1 parent 646175b commit d49ddb2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@ describe('NodeEffects', () => {
});

it('should manage permissions from the active selection', () => {
spyOn(store, 'select').and.returnValue(of({ isEmpty: false, first: { entry: { id: 'fileId' } } }));
spyOn(store, 'select').and.returnValue(of({ isEmpty: false, last: { entry: { id: 'fileId' } } }));
spyOn(router, 'navigate').and.stub();
store.dispatch(new ManagePermissionsAction(null));

Expand Down

0 comments on commit d49ddb2

Please sign in to comment.