Skip to content

Commit 039a2ee

Browse files
committed
chore: update test after rebase
1 parent 478e81b commit 039a2ee

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

packages/opentelemetry-propagator-b3/test/B3MultiPropagator.test.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,12 @@ describe('B3MultiPropagator', () => {
7373
get: (key: string) => {
7474
return undefined;
7575
},
76-
set: (key: string, value: string) => {},
77-
unset: (key: string) => {},
76+
set: function(key: string, value: string) {
77+
return this;
78+
},
79+
unset: function(key: string) {
80+
return this;
81+
},
7882
serialize: () => {
7983
return 'foo=bar,baz=quux';
8084
},

0 commit comments

Comments
 (0)