Skip to content

Commit

Permalink
Fix broken filterlist. (#130146)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjhampton authored Apr 13, 2022
1 parent 405a9cf commit 255bba6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ const allowlistBaseEventFields: AllowlistFields = {
directory: true,
hash: true,
Ext: {
compressed_bytes: true,
compressed_bytes_present: true,
bytes_compressed: true,
bytes_compressed_present: true,
code_signature: true,
header_bytes: true,
header_data: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ describe('TelemetryEventsSender', () => {
test: 'me',
another: 'nope',
Ext: {
compressed_bytes: 'data up to 4mb',
compressed_bytes_present: 'data up to 4mb',
bytes_compressed: 'data up to 4mb',
bytes_compressed_present: 'data up to 4mb',
code_signature: {
key1: 'X',
key2: 'Y',
Expand Down Expand Up @@ -133,8 +133,8 @@ describe('TelemetryEventsSender', () => {
created: 0,
path: 'X',
Ext: {
compressed_bytes: 'data up to 4mb',
compressed_bytes_present: 'data up to 4mb',
bytes_compressed: 'data up to 4mb',
bytes_compressed_present: 'data up to 4mb',
code_signature: {
key1: 'X',
key2: 'Y',
Expand Down

0 comments on commit 255bba6

Please sign in to comment.