diff --git a/dlp/package.json b/dlp/package.json index c157200351..bf6de35499 100644 --- a/dlp/package.json +++ b/dlp/package.json @@ -25,6 +25,6 @@ "mocha": "^8.0.0", "pixelmatch": "^5.0.0", "pngjs": "^6.0.0", - "uuid": "^8.0.0" + "uuid": "^9.0.0" } } diff --git a/dlp/system-test/inspect.test.js b/dlp/system-test/inspect.test.js index 608169e0a0..7704f8036a 100644 --- a/dlp/system-test/inspect.test.js +++ b/dlp/system-test/inspect.test.js @@ -242,10 +242,10 @@ describe('inspect', () => { it('should have a maxFindings option', () => { const outputA = execSync( - `node inspectString.js ${projectId} "My email is gary@example.com and my phone number is (223) 456-7890." LIKELIHOOD_UNSPECIFIED 2` + `node inspectString.js ${projectId} "My email is gary@example.com and my phone number is (223) 456-7890." LIKELIHOOD_UNSPECIFIED 1` ); const outputB = execSync( - `node inspectString.js ${projectId} "My email is gary@example.com and my phone number is (223) 456-7890." LIKELIHOOD_UNSPECIFIED 3` + `node inspectString.js ${projectId} "My email is gary@example.com and my phone number is (223) 456-7890." LIKELIHOOD_UNSPECIFIED 2` ); assert.notStrictEqual( outputA.includes('PHONE_NUMBER'),