Skip to content

Commit e94b474

Browse files
pkozlowski-opensourcedevversion
authored andcommitted
refactor(core): fix lint issues
Fixing lint issues that I've just introduced...
1 parent 34f002d commit e94b474

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/core/test/acceptance/signal-components/dom_property_bindings.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ describe('dom property bindings in signal based components', () => {
4141
standalone: true,
4242
})
4343
class App {
44-
_idx = 0;
44+
idx = 0;
4545
nonReactive() {
46-
return this._idx++;
46+
return this.idx++;
4747
}
4848
unrelated = signal('foo');
4949
}
@@ -100,7 +100,7 @@ describe('dom property interpolation in signal based components', () => {
100100
if ((rf & 1)) {
101101
ɵɵelement(0, 'div', 0);
102102
ɵɵpropertyCreate(
103-
1, 'title', () => ɵɵstringifyInterpolation`Hello, ${ctx.name()}!`)
103+
1, 'title', () => ɵɵstringifyInterpolation`Hello, ${ctx.name()}!`);
104104
}
105105
},
106106
styles: []

0 commit comments

Comments
 (0)