Skip to content

Commit

Permalink
Update comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Feb 19, 2020
1 parent 353eabd commit b9bbee2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/unit/dom-if.html
Original file line number Diff line number Diff line change
Expand Up @@ -962,9 +962,9 @@
observer = el.shadowRoot.querySelector('#observer');
// Note that path bindings in a falsey dom-if will be updated when the
// dom-if becomes truthy, however path notifications to other elements
// will be lost; this is a fundamental limitation due to the fact that
// batched path notifications are not supported. Hence the `propChanged`
// count increments, but the `pathChanged` count does not.
// will be lost; this is a fundamental limitation (#4818) due to the fact
// that batched path notifications are not supported. Hence the
// `propChanged` count increments, but the `pathChanged` count does not.
assert.equal(observer.propChanged.callCount, restamp ? 1 : 2);
assert.equal(observer.pathChanged.callCount, 1);
document.body.removeChild(el);
Expand Down

0 comments on commit b9bbee2

Please sign in to comment.