Skip to content

Commit

Permalink
chore: update test after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
mwear committed Oct 26, 2020
1 parent 478e81b commit 039a2ee
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,12 @@ describe('B3MultiPropagator', () => {
get: (key: string) => {
return undefined;
},
set: (key: string, value: string) => {},
unset: (key: string) => {},
set: function(key: string, value: string) {
return this;
},
unset: function(key: string) {
return this;
},
serialize: () => {
return 'foo=bar,baz=quux';
},
Expand Down

0 comments on commit 039a2ee

Please sign in to comment.