Skip to content

Commit

Permalink
revert changes to course-competencies-relation-graph.component.spec.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
coolchock committed Jan 10, 2025
1 parent f1a2741 commit 7c186a8
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,11 @@ describe('CourseCompetenciesRelationGraphComponent', () => {
let fixture: ComponentFixture<CourseCompetenciesRelationGraphComponent>;

const courseCompetencies: CourseCompetency[] = [
{ id: 1, type: CourseCompetencyType.COMPETENCY, title: 'Competency', dimension: { height: 45.59, width: 0 }, meta: { forceDimensions: false }, position: { x: 0, y: 0 } },
{ id: 1, type: CourseCompetencyType.COMPETENCY, title: 'Competency' },
{
id: 2,
type: CourseCompetencyType.PREREQUISITE,
title: 'Prerequisite',
dimension: { height: 45.59, width: 0 },
meta: { forceDimensions: false },
position: { x: 0, y: 0 },
},
];

Expand Down Expand Up @@ -87,9 +84,6 @@ describe('CourseCompetenciesRelationGraphComponent', () => {
id: cc.id,
type: cc.type,
},
dimension: cc.dimension,
meta: cc.meta,
position: cc.position,
};
}),
);
Expand Down

0 comments on commit 7c186a8

Please sign in to comment.