Skip to content

Commit

Permalink
fix typescript in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixTJDietrich committed Nov 19, 2024
1 parent dd32dc0 commit 5faf971
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 @@ -17,7 +17,7 @@ import { isQuizEditable } from 'app/exercises/quiz/shared/quiz-manage-util.servi
})
export class QuizExerciseComponent extends ExerciseComponent {
protected exerciseService = inject(ExerciseService);
protected quizExerciseService = inject(QuizExerciseService);
quizExerciseService = inject(QuizExerciseService);
private accountService = inject(AccountService);
private alertService = inject(AlertService);
private sortService = inject(SortService);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type OptionalTextBlockRef = TextBlockRef | undefined;
export class TextblockAssessmentCardComponent {
protected route = inject(ActivatedRoute);
private structuredGradingCriterionService = inject(StructuredGradingCriterionService);
private textAssessmentAnalytics = inject(TextAssessmentAnalytics);
textAssessmentAnalytics = inject(TextAssessmentAnalytics);

@Input() textBlockRef: TextBlockRef;
@Input() selected = false;
Expand Down

0 comments on commit 5faf971

Please sign in to comment.