Skip to content

Commit b2bad8d

Browse files
committed
fixing sonar issues
1 parent 46b1c6b commit b2bad8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webui/src/test/observable-properties-test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ describe('observable-properties-support', function () {
510510
});
511511

512512
it('if not set, changes when source object changes', function () {
513-
property.value;
513+
property.value = undefined;
514514

515515
sourceProperty1.observable('BAZ');
516516

@@ -572,7 +572,7 @@ describe('observable-properties-support', function () {
572572
});
573573

574574
it('if not set, changes when source object changes', function () {
575-
property.value;
575+
property.value = undefined;
576576

577577
sourceProperty1.observable('BAZ');
578578

0 commit comments

Comments
 (0)