Skip to content

Commit

Permalink
work for #6205 fix angular markup tests
Browse files Browse the repository at this point in the history
  • Loading branch information
OlgaLarina committed Jul 20, 2023
1 parent b12ffff commit a3d49d9
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(): void {
super.afterUpdate();
protected override afterUpdate(key: string): void {
super.afterUpdate(key);
this.log += "->afterUpdate";
}

Expand Down

0 comments on commit a3d49d9

Please sign in to comment.