Skip to content

Commit 1fecf0c

Browse files
committed
fix: ut
Signed-off-by: Yvonnick Esnault <yvonnick.esnault@corp.ovh.com>
1 parent e5a38bf commit 1fecf0c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

ui/src/app/model/repositories.model.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
export class RepositoriesManager {
22
name: string;
3+
type: string;
34
}
45

56
export interface Repository {

ui/src/app/views/project/show/admin/repomanager/list/project.repomanager.list.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ describe('CDS: Project RepoManager List Component', () => {
9696
}
9797
};
9898
fixture.componentInstance.reposmanagers = [
99-
<RepositoriesManager>{ name: 'stash' }
99+
<RepositoriesManager>{ name: 'stash', 'type': '' }
100100
];
101101

102102
fixture.detectChanges(true);

0 commit comments

Comments
 (0)