Commit 9ba01dff authored by Eduardo's avatar Eduardo

Update src/annotator/test/guest-test.js

Co-authored-by: 's avatarRobert Knight <robertknight@gmail.com>
parent 70e9c13b
......@@ -696,7 +696,7 @@ describe('Guest', () => {
assert.equal(guest.selectedRanges.length, 0);
assert.notCalled(hostRPC().call);
// On next selection clear it should be inform the host.
// On next selection clear it should inform the host.
notifySelectionChanged(null);
assert.calledOnce(hostRPC().call);
assert.calledWithExactly(hostRPC().call, 'textUnselected');
......@@ -716,7 +716,7 @@ describe('Guest', () => {
assert.notCalled(removeAllRanges);
// On next selection clear it should be inform the host.
// On next selection clear it should inform the host.
notifySelectionChanged(null);
assert.calledOnce(hostRPC().call);
assert.calledWithExactly(hostRPC().call, 'textUnselected');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment