Skip to content

Commit

Permalink
Fix unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dk981234 committed Sep 4, 2023
1 parent 2704901 commit 8a31d1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/survey-angular-ui/test/base.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ class TestWithRecursiveProperty extends BaseAngular<RecurciveModel> {
protected override getModel(): RecurciveModel {
return this.model;
}
protected override afterUpdate(key: string): void {
super.afterUpdate(key);
protected override afterUpdate(): void {
super.afterUpdate();
this.log += "->afterUpdate";
}

Expand Down

0 comments on commit 8a31d1a

Please sign in to comment.