Skip to content

Commit 8313be6

Browse files
author
Ethan Ferrari
committed
clean up a spec description
1 parent 3dca415 commit 8313be6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/strongbus_spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,7 +1006,7 @@ describe('Strongbus.Bus', () => {
10061006
bus.pipe(bus2);
10071007
});
10081008

1009-
describe('and no listeners have been added or removed between invocations', () => {
1009+
describe('and no delegate listeners have been added or removed between invocations', () => {
10101010
it('returns the same reference', () => {
10111011
bus.on('foo', onTestEvent);
10121012
bus2.on('bar', onTestEvent);
@@ -1028,7 +1028,7 @@ describe('Strongbus.Bus', () => {
10281028
});
10291029
});
10301030

1031-
describe('and a listener is removed from a delegate instance between invocations', () => {
1031+
describe('and a listener is removed from a delegate between invocations', () => {
10321032
it('cachebusts', () => {
10331033
bus.on('foo', onTestEvent);
10341034
const sub = bus2.on('bar', onTestEvent);
@@ -1154,7 +1154,7 @@ describe('Strongbus.Bus', () => {
11541154
bus.pipe(bus2);
11551155
});
11561156

1157-
describe('and no listeners have been added or removed between invocations', () => {
1157+
describe('and no delegate listeners have been added or removed between invocations', () => {
11581158
it('returns the same reference', () => {
11591159
bus.on('foo', onTestEvent);
11601160
bus2.on('bar', onTestEvent);
@@ -1176,7 +1176,7 @@ describe('Strongbus.Bus', () => {
11761176
});
11771177
});
11781178

1179-
describe('and a listener is removed from a delegate instance between invocations', () => {
1179+
describe('and a listener is removed from a delegate between invocations', () => {
11801180
it('returns the same reference', () => {
11811181
bus.on('foo', onTestEvent);
11821182
const sub = bus2.on('bar', onTestEvent);

0 commit comments

Comments
 (0)