Skip to content

Commit

Permalink
[ACS-9068] [ACA] - Pipeline changes enabling packagage release
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikiwanekhyland committed Dec 9, 2024
1 parent 1ce5062 commit f65a36b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ describe('RuleSetPickerSmartComponent', () => {
fixture = TestBed.createComponent(RuleSetPickerSmartComponent);
component = fixture.componentInstance;

loadRuleSetsSpy = spyOn(folderRuleSetsService, 'loadRuleSets').and.callThrough();
loadRuleSetsSpy = spyOn(component.folderRuleSetsService, 'loadRuleSets').and.callThrough();
callApiSpy = spyOn<any>(folderRuleSetsService, 'callApi');
callApiSpy
.withArgs(`/nodes/${dialogOptions.nodeId}/rule-sets?include=isLinkedTo,owningFolder,linkedToBy&skipCount=0&maxItems=100`, 'GET')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export class RuleSetPickerSmartComponent implements OnInit {
private folderLoading$ = new BehaviorSubject<boolean>(true);

public readonly data: RuleSetPickerOptions = inject(MAT_DIALOG_DATA);
private readonly folderRuleSetsService = inject(FolderRuleSetsService);
public readonly folderRuleSetsService = inject(FolderRuleSetsService);
private readonly dialogRef = inject(MatDialogRef<RuleSetPickerSmartComponent>);
private readonly notificationService = inject(NotificationService);
private readonly destroyRef = inject(DestroyRef);
Expand Down

0 comments on commit f65a36b

Please sign in to comment.