Skip to content

Commit 77f3168

Browse files
committed
fix typo
1 parent 2a86bff commit 77f3168

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/event_processor/default_dispatcher.browser.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ describe('eventDispatcher', () => {
2626
expect(Object.is(eventDispatcher, MockDefaultEventDispatcher.mock.instances[0])).toBe(true);
2727
});
2828

29-
it('users a BrowserRequestHandler', () => {
29+
it('uses a BrowserRequestHandler', () => {
3030
expect(Object.is(eventDispatcher, MockDefaultEventDispatcher.mock.instances[0])).toBe(true);
3131
expect(Object.is(MockDefaultEventDispatcher.mock.calls[0][0], MockBrowserRequestHandler.mock.instances[0])).toBe(true);
3232
});

lib/event_processor/default_dispatcher.node.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ describe('eventDispatcher', () => {
2727
expect(Object.is(eventDispatcher, MockDefaultEventDispatcher.mock.instances[0])).toBe(true);
2828
});
2929

30-
it('users a NodeRequestHandler', () => {
30+
it('uses a NodeRequestHandler', () => {
3131
expect(Object.is(eventDispatcher, MockDefaultEventDispatcher.mock.instances[0])).toBe(true);
3232
expect(Object.is(MockDefaultEventDispatcher.mock.calls[0][0], MockNodeRequestHandler.mock.instances[0])).toBe(true);
3333
});

0 commit comments

Comments
 (0)