Skip to content

Commit cb0d6eb

Browse files
committed
up
1 parent 5560e2f commit cb0d6eb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/odp/odp_manager_factory.browser.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2024, Optimizely
2+
* Copyright 2024-2025, Optimizely
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -84,7 +84,7 @@ describe('createOdpManager', () => {
8484
expect(eventBatchSize).toBe(99);
8585
});
8686

87-
it('should use the node default eventBatchSize if none provided', () => {
87+
it('should use the browser default eventBatchSize if none provided', () => {
8888
const odpManager = createOdpManager({});
8989
expect(odpManager).toBe(mockGetOpaqueOdpManager.mock.results[0].value);
9090
const { eventBatchSize } = mockGetOpaqueOdpManager.mock.calls[0][0];
@@ -98,7 +98,7 @@ describe('createOdpManager', () => {
9898
expect(eventFlushInterval).toBe(9999);
9999
});
100100

101-
it('should use the node default eventFlushInterval if none provided', () => {
101+
it('should use the browser default eventFlushInterval if none provided', () => {
102102
const odpManager = createOdpManager({});
103103
expect(odpManager).toBe(mockGetOpaqueOdpManager.mock.results[0].value);
104104
const { eventFlushInterval } = mockGetOpaqueOdpManager.mock.calls[0][0];

0 commit comments

Comments
 (0)