diff --git a/aio/content/examples/testing/src/app/demo/demo.ts b/aio/content/examples/testing/src/app/demo/demo.ts index 674bc14a57..5312032c8b 100644 --- a/aio/content/examples/testing/src/app/demo/demo.ts +++ b/aio/content/examples/testing/src/app/demo/demo.ts @@ -37,8 +37,8 @@ export class ValueService { // #docregion MasterService @Injectable() export class MasterService { - constructor(private masterService: ValueService) { } - getValue() { return this.masterService.getValue(); } + constructor(private valueService: ValueService) { } + getValue() { return this.valueService.getValue(); } } // #enddocregion MasterService