Skip to content

Commit bb256ff

Browse files
committed
LP2074112 follow-up: allow angular unit tests to compile
LP2074112 added a ninth parameter to the constructor of this component, but did not update the test in which the constructor was called. This caused the angular unit tests to not be able to compile at all. This work was done in the collaborative code review -- many thanks for this! Signed-off-by: Jane Sandberg <sandbergja@gmail.com>
1 parent c36282b commit bb256ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Open-ILS/src/eg2/src/app/staff/cat/volcopy/copy-attrs.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ describe('CopyAttrsComponent', () => {
2424

2525
beforeEach(() => {
2626
component = new CopyAttrsComponent(idlMock, orgMock, authServiceMock,
27-
null, formatServiceMock, storeServiceMock,
27+
null, null, formatServiceMock, storeServiceMock,
2828
toastServiceMock, volCopyServiceMock);
2929
component.copyTemplateCbox = jasmine.createSpyObj<ComboboxComponent>(['entries']);
3030
component.copyTemplateCbox.selected = {id: 0};

0 commit comments

Comments
 (0)