Skip to content

Commit 34fcdc9

Browse files
committed
Fix typo
1 parent 9fc97dc commit 34fcdc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/optimizely-sdk/lib/index.browser.tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,7 @@ describe('javascript-sdk (Browser)', function() {
873873
const sendEventArgs = fakeEventManager.sendEvent.args;
874874

875875
const expectedEventArgs = new OdpEvent('fullstack', 'dummy-action', new Map(), new Map());
876-
assert.deepEqual(JSON.stringify(sendEventArgs[0][0], JSON.stringify(expectedEventArgs)));
876+
assert.deepEqual(JSON.stringify(sendEventArgs[0][0]), JSON.stringify(expectedEventArgs));
877877
});
878878

879879
it('should log an error when attempting to send an odp event when odp is disabled', async () => {

0 commit comments

Comments
 (0)