Skip to content

Commit 4aa16fd

Browse files
authored
Remove param to reduce latency (per docs) (#2853)
1 parent d25842f commit 4aa16fd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dlp/inspect_content_test.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ def test_inspect_gcs_file(bucket, topic_id, subscription_id, capsys):
298298
"test.txt",
299299
topic_id,
300300
subscription_id,
301-
["FIRST_NAME", "EMAIL_ADDRESS", "PHONE_NUMBER"],
301+
["EMAIL_ADDRESS", "PHONE_NUMBER"],
302302
timeout=420,
303303
)
304304

@@ -340,7 +340,7 @@ def test_inspect_gcs_file_no_results(
340340
"harmless.txt",
341341
topic_id,
342342
subscription_id,
343-
["FIRST_NAME", "EMAIL_ADDRESS", "PHONE_NUMBER"],
343+
["EMAIL_ADDRESS", "PHONE_NUMBER"],
344344
timeout=420,
345345
)
346346

@@ -356,7 +356,7 @@ def test_inspect_gcs_image_file(bucket, topic_id, subscription_id, capsys):
356356
"test.png",
357357
topic_id,
358358
subscription_id,
359-
["FIRST_NAME", "EMAIL_ADDRESS", "PHONE_NUMBER"],
359+
["EMAIL_ADDRESS", "PHONE_NUMBER"],
360360
)
361361

362362
out, _ = capsys.readouterr()
@@ -371,7 +371,7 @@ def test_inspect_gcs_multiple_files(bucket, topic_id, subscription_id, capsys):
371371
"*",
372372
topic_id,
373373
subscription_id,
374-
["FIRST_NAME", "EMAIL_ADDRESS", "PHONE_NUMBER"],
374+
["EMAIL_ADDRESS", "PHONE_NUMBER"],
375375
)
376376

377377
out, _ = capsys.readouterr()

0 commit comments

Comments
 (0)